/* ========================================
   INVOICE PAGE — CSS
   ======================================== */
:root {
    --inv-primary: #2148AA;
    --inv-btn: #0A2875;
    --inv-dark: #03122B;
    --inv-light-bg: #EEF3FF;
    --inv-light-blue: #E0F1FD;
}

/* ----------------------------------------
   TOP BAR
   ---------------------------------------- */
.inv-top-bar {
    background: var(--inv-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 0;
}

.inv-top-bar .contact-info span {
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 26px;
    margin-right: 30px;
}

.inv-top-bar .contact-info .contact-phone {
    color: #B9F8B1 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

.inv-top-bar .contact-info .contact-email {
    color: white !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

.inv-top-bar .social-icons a {
    color: #fff;
    font-size: 14px;
    margin-left: 15px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.inv-top-bar .social-icons a:hover {
    opacity: 1;
}

/* ----------------------------------------
   HEADER / NAVBAR
   ---------------------------------------- */
.inv-header {
    background: #ffffff !important;
    padding: 6px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.inv-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.inv-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inv-icon {
    width: 40px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.inv-logo .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.inv-logo .brand-name {
    font-family: "Rethink Sans" !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 10px !important;
    color: #6b7280 !important;
}

.inv-product-name {
    font-family: "Rethink Sans" !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    color: var(--inv-primary) !important;
    line-height: 1.1;
}

/* Navigation */
.inv-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.inv-nav ul li a {
    text-decoration: none;
    color: #1a1a1a !important;
    font-family: "Rethink Sans" !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 15px !important;
    padding-bottom: 15px;
    position: relative;
    transition: color 0.3s;
}

.inv-nav ul li a:hover,
.inv-nav ul li a.active {
    color: var(--inv-primary) !important;
}

.inv-nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--inv-primary);
    border-radius: 2px;
}

/* Login Button */
.btn-inv-login {
    background: var(--inv-btn);
    color: white;
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 15px;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    border: none;
}

.btn-inv-login:hover {
    background: #051852;
    color: white;
    transform: translateY(-1px);
}

/* Mobile toggle */
.inv-header .mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--inv-primary);
    font-size: 22px;
    cursor: pointer;
}

.mobile-nav-drawer {
    display: none;
    background: var(--inv-primary);
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-drawer ul li a {
    color: rgba(255, 255, 255, 0.9);
    font-family: "DM Sans";
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav-drawer.open {
    display: block;
}

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.inv-hero-section {
    position: relative;
    padding: 10px 0 0;
    background: #E0F1FD;
    overflow: hidden;
    color: var(--inv-dark);
    text-align: center;
}

/* Animated background rows */
.inv-hero-section .hero-bg-animation {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.inv-hero-section .hero-row {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    background: rgba(33, 72, 170, 0.12);
}

.inv-hero-section .hero-row-1 {
    height: 120px;
}

.inv-hero-section .hero-row-2 {
    height: 250px;
}

.inv-marquee-track-1,
.inv-marquee-track-2 {
    display: flex;
    gap: 5px;
    animation: inv-scroll 60s linear infinite;
    width: max-content;
}

.inv-marquee-track-2 {
    animation-direction: reverse;
}

.inv-hero-section .hero-row img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.2;
}

@keyframes inv-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Overlay */
.inv-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            rgba(33, 72, 170, 0.08) 0%,
            rgba(238, 243, 255, 0.5) 70%);
    z-index: 2;
    pointer-events: none;
}

/* Hero content */
.inv-hero-section .hero-content {
    position: relative;
    z-index: 10;
    padding-top: 60px;
    display: block !important;
}

.inv-hero-section h1 {
    font-family: "Rethink Sans";
    font-weight: 800;
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--inv-dark);
    text-align: center;
}

.inv-hero-section .hero-subhead {
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    color: #4b5563;
}

/* Feature pills */
.inv-hero-section .hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
}

.inv-hero-section .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    color: var(--inv-dark);
}

.inv-icon-wrapper {
    width: 32px;
    height: 32px;
    background: var(--inv-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}

.inv-icon-wrapper img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* CTA Buttons */
.inv-hero-section .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.btn-inv-primary {
    background: var(--inv-btn);
    color: white;
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-inv-primary:hover {
    background: #051852;
    transform: translateY(-1px);
}

.btn-inv-outline {
    background: transparent;
    color: var(--inv-primary);
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid var(--inv-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-inv-outline:hover {
    background: var(--inv-primary);
    color: #ffffff;
}

/* Dashboard image */
.inv-dashboard-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 40px rgba(33, 72, 170, 0.15);
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 900px) {
    .inv-nav {
        display: none;
    }

    .inv-header .mobile-menu-toggle {
        display: block;
    }

    .inv-hero-section h1 {
        font-size: 38px;
    }

    .inv-hero-section .hero-features {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .inv-hero-section h1 {
        font-size: 30px;
    }

    .inv-hero-section .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .inv-top-bar .contact-info {
        display: none;
    }
}

/* ----------------------------------------
   WHO THIS INVOICE SECTION (DOME)
   ---------------------------------------- */
.inv-suited-for-section {
    background-color: #ffffff;
    padding: 60px 10px;
    overflow-x: hidden;
}

.inv-scale-wrapper {
    container-type: inline-size;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.inv-semi-circle-stage {
    position: relative;
    width: 100cqi;
    height: 52cqi;
}

.inv-glow-dome {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    transform: translateX(-50%);
    width: 80cqi;
    height: 40cqi;
    background: radial-gradient(70.74% 74.61% at 50.05% 100%,
            #ffffff 0%,
            #E0F1FD 100%);
    border-radius: 80cqi 80cqi 0 0;
    z-index: 1;
    pointer-events: none;
}

.inv-arc-ring {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    transform: translateX(-50%);
    border: max(1px, 0.1cqi) solid rgba(10, 40, 117, 0.08);
    border-bottom: none;
    z-index: 2;
    pointer-events: none;
}

.inv-r1 {
    width: 36.66cqi;
    height: 18.33cqi;
    border-radius: 36.66cqi 36.66cqi 0 0;
}

.inv-r2 {
    width: 58.33cqi;
    height: 29.16cqi;
    border-radius: 58.33cqi 58.33cqi 0 0;
}

.inv-r3 {
    width: 80cqi;
    height: 40cqi;
    border-radius: 80cqi 80cqi 0 0;
}

.inv-r4 {
    width: 95cqi;
    height: 47.5cqi;
    border-radius: 95cqi 95cqi 0 0;
}

.inv-arc-line {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    width: 1px;
    height: 48cqi;
    background: linear-gradient(to top,
            rgba(10, 40, 117, 0.05) 0%,
            rgba(10, 40, 117, 0.05) 86.9%,
            rgba(10, 40, 117, 0.1) 86.9%,
            rgba(10, 40, 117, 0.1) 100%);
    transform-origin: bottom center;
    z-index: 2;
    pointer-events: none;
}

.inv-center-text {
    position: absolute;
    bottom: 3.33cqi;
    left: 50%;
    transform: translateX(-50%);
    width: 50cqi;
    text-align: center;
    z-index: 10;
}

.inv-center-text h2 {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 3.5cqi;
    line-height: 4.33cqi;
    color: #111827;
    margin-bottom: 1cqi;
}

.inv-center-text p {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 1.66cqi;
    line-height: 2.5cqi;
    color: #6b7280;
    padding-bottom: 3cqi;
}

.inv-badge {
    position: absolute;
    transform: translate(-50%, 50%);
    background: #ffffff;
    border: max(1px, 0.12cqi) solid var(--inv-primary);
    padding: 0.66cqi 1.2cqi;
    min-width: 18cqi;
    border-radius: 5cqi;
    display: flex;
    align-items: center;
    gap: 0.83cqi;
    box-shadow: 0 0.33cqi 1.25cqi rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 20;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    font-family: "Inter";
    font-weight: 600;
    font-size: 1.2cqi;
    color: #374151;
    animation: invBadgeFloat 4s ease-in-out infinite;
}

@keyframes invBadgeFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -0.5cqi;
    }
}

.inv-badge:hover {
    box-shadow: 0 0.5cqi 1.66cqi rgba(33, 72, 170, 0.15);
    transform: translate(-50%, 50%) translateY(-0.25cqi);
}

.inv-badge-icon {
    width: 1.5cqi;
    height: 1.5cqi;
    min-width: 1.5cqi;
    background: var(--inv-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inv-badge-icon img {
    width: 60%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Badge Positions */
.inv-b-top-left {
    bottom: 45cqi;
    left: 41cqi;
    animation-delay: 0s;
}

.inv-b-top-right {
    bottom: 45cqi;
    left: 59cqi;
    animation-delay: 0.1s;
}

.inv-b-left-1 {
    bottom: 38cqi;
    left: 31cqi;
    animation-delay: 0.2s;
}

.inv-b-right-1 {
    bottom: 38cqi;
    left: 69cqi;
    animation-delay: 0.3s;
}

.inv-b-left-2 {
    bottom: 31cqi;
    left: 23cqi;
    animation-delay: 0.4s;
}

.inv-b-right-2 {
    bottom: 31cqi;
    left: 77cqi;
    animation-delay: 0.5s;
}

.inv-b-left-3 {
    bottom: 24cqi;
    left: 18cqi;
    animation-delay: 0.6s;
}

.inv-b-right-3 {
    bottom: 24cqi;
    left: 82cqi;
    animation-delay: 0.7s;
}

.inv-b-left-4 {
    bottom: 18cqi;
    left: 14cqi;
    animation-delay: 0.8s;
}

.inv-b-right-4 {
    bottom: 18cqi;
    left: 86cqi;
    animation-delay: 0.9s;
}

.inv-b-left-5 {
    bottom: 12cqi;
    left: 12cqi;
    animation-delay: 1.0s;
}

.inv-b-right-5 {
    bottom: 12cqi;
    left: 88cqi;
    animation-delay: 1.1s;
}

.inv-b-left-6 {
    bottom: 6cqi;
    left: 11cqi;
    animation-delay: 1.2s;
}

.inv-b-right-6 {
    bottom: 6cqi;
    left: 89cqi;
    animation-delay: 1.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .inv-semi-circle-stage {
        height: 100cqi;
    }

    .inv-badge {
        min-width: 25cqi;
        font-size: 2cqi;
    }

    .inv-center-text h2 {
        font-size: 5cqi;
    }

    .inv-center-text p {
        font-size: 2.5cqi;
    }
}

/* ----------------------------------------
   INVOICE TAB SECTION
   ---------------------------------------- */
.inv-tabs-section {
    padding-bottom: 60px;
    background-color: #eef2f6;
    font-family: 'Inter', sans-serif;
}

/* Full-Width Sticky Tabs Header Wrapper */
.inv-tabs-section .tabs-header-wrapper {
    position: sticky;
    top: 50px;
    z-index: 999;
    background-color: #eef2f6;
    width: 100%;
    box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border-top: 1px solid #E5E7EB;
}

.inv-tabs-section .tabs-header-inner {
    padding-top: 5px;
}

.inv-tabs-section .tab-subtitle {
    display: inline-block;
    color: var(--inv-primary, #1a235e);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.inv-tabs-section .tab-headline {
    text-align: center;
    margin-bottom: 50px;
}

.inv-tabs-section .tab-headline h2 {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #333333;
}

.inv-tabs-section .tabs-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.inv-tabs-section .tabs-header::-webkit-scrollbar {
    display: none;
}

.inv-tabs-section .tab-item {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #6b7280;
    padding: 15px 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.inv-tabs-section .tab-item.active {
    color: #2148AA;
    font-weight: 700;
    border-bottom: 3px solid #2148AA;
}

/* Redefining progress bar indicator for invoice tabs */
.inv-tabs-section .tab-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #2148AA, #4A90E2);
    transition: width 0s linear;
    display: none;
    /* Default hidden, managed by JS/CSS active state */
}

/* If you want the auto-cycle indicator back, uncomment this and adjust JS */
/* .inv-tabs-section .tab-item.active::after {
    display: block;
    width: 100%;
    transition: width 5s linear;
} */

.inv-tabs-section .tab-content {
    display: block !important;
    opacity: 1 !important;
    padding-top: 20px;
    margin-bottom: 80px;
}

@keyframes inv-tab-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------
   Layout Grids (from test.html)
   ---------------------------------- */
.inv-tabs-section .top-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.inv-tabs-section .bottom-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.inv-tabs-section .col-left {
    flex: 1.3;
}

.inv-tabs-section .col-right {
    flex: 1;
}

.inv-tabs-section .right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ----------------------------------
   White Cards
   ---------------------------------- */
.inv-tabs-section .white-card {
    background-color: #ffffff;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    position: relative;
}

.inv-tabs-section .right-stack .white-card {
    flex: 1;
}

.inv-tabs-section .white-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.inv-tabs-section .white-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------
   Dark blue Card
   ---------------------------------- */
.inv-tabs-section .dark-card {
    background-color: #1a235e;
    /* Navy blue */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    color: white;
}

.inv-tabs-section .dark-card .text-content {
    padding: 40px 40px 20px 40px;
    flex: none;
}

.inv-tabs-section .dark-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: white;
}

.inv-tabs-section .dark-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #d1d5db;
}

/* Image Wrapper */
.inv-tabs-section .dark-card .image-wrapper {
    padding: 0 40px 30px 40px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.inv-tabs-section .dark-card .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: -59px;
}

/* ----------------------------------
   Notification Card Specifics
   ---------------------------------- */
.inv-tabs-section .notification-card {
    padding-right: 120px;
}

.inv-tabs-section .wa-icon {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: auto;
}

/* ----------------------------------
   Responsive Adjustments
   ---------------------------------- */
@media (max-width: 900px) {

    .inv-tabs-section .top-row,
    .inv-tabs-section .bottom-row {
        flex-direction: column;
    }

    .inv-tabs-section .col-left,
    .inv-tabs-section .col-right {
        flex: none;
    }

    .inv-tabs-section .tab-headline h2 {
        font-size: 28px;
        padding: 0 15px;
    }
}

@media (max-width: 600px) {
    .inv-tabs-section .white-card {
        padding: 25px 30px;
    }

    .inv-tabs-section .dark-card .text-content {
        padding: 30px 30px 15px 30px;
    }

    .inv-tabs-section .dark-card .image-wrapper {
        padding: 0 30px 30px 30px;
    }

    .inv-tabs-section .notification-card {
        padding-right: 30px;
        padding-bottom: 90px;
    }

    .inv-tabs-section .wa-icon {
        top: auto;
        bottom: 25px;
        right: 30px;
        transform: none;
    }
}

/* ----------------------------------
   Service Tab 2 (Advanced Invoicing) Ported Styles
   ---------------------------------- */

.inv-tabs-section .inv-banner-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 240px;
    margin-bottom: 24px;
    width: 100%;
}

.inv-tabs-section .inv-banner-card .text-content {
    flex: 0 0 45%;
}

.inv-tabs-section .inv-banner-card .image-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
    padding: 30px 30px 0 0;
}

.inv-tabs-section .banner-img-1 {
    width: 70%;
    height: auto;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: -5px;
}

.inv-tabs-section .banner-img-2 {
    width: 35%;
    height: auto;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: -5px;
}

.inv-tabs-section .inv-bottom-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.inv-tabs-section .inv-bottom-grid .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inv-tabs-section .inv-tall-card {
    flex: 1;
    flex-direction: column;
}

.inv-tabs-section .inv-tall-card .text-content {
    padding-bottom: 20px;
    flex: none;
}

.inv-tabs-section .inv-tall-card .image-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 40px;
}

.inv-tabs-section .inv-tall-card .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
    margin-bottom: -5px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.inv-tabs-section .inv-bottom-grid .col>.white-card {
    flex: 1;
}

@media (max-width: 900px) {
    .inv-tabs-section .inv-banner-card {
        flex-direction: column;
    }

    .inv-tabs-section .inv-banner-card .text-content {
        flex: none;
        width: 100%;
        padding-bottom: 20px;
    }

    .inv-tabs-section .inv-banner-card .image-wrapper {
        padding: 0 20px;
        align-items: center;
        justify-content: center;
        min-height: 200px;
    }

    .inv-tabs-section .banner-img-1,
    .inv-tabs-section .banner-img-2 {
        border-radius: 8px;
        margin-bottom: 0;
    }

    .inv-tabs-section .inv-bottom-grid {
        flex-direction: column;
    }

    .inv-tabs-section .inv-tall-card,
    .inv-tabs-section .inv-bottom-grid .col>.white-card {
        flex: none;
    }
}

@media (max-width: 500px) {
    .inv-tabs-section .inv-banner-card .image-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .inv-tabs-section .banner-img-1,
    .inv-tabs-section .banner-img-2 {
        width: 100%;
    }

    .inv-tabs-section .inv-tall-card .image-wrapper {
        padding: 0 20px;
    }
}

/* ----------------------------------
   Service Tab 3 (Purchase Management) Ported Styles
   ---------------------------------- */

.inv-tabs-section .inv-masonry-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.inv-tabs-section .inv-masonry-grid .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inv-tabs-section .inv-masonry-grid .col>.white-card {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inv-tabs-section .inv-masonry-grid .col>.inv-tall-card {
    flex: 1.5;
}

.inv-tabs-section .inv-img-flush-bottom {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 40px;
}

.inv-tabs-section .inv-img-flush-bottom img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
    margin-bottom: -5px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.inv-tabs-section .inv-wide-card {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    min-height: 220px;
}

.inv-tabs-section .inv-wide-card .text-content {
    flex: 0 0 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inv-tabs-section .inv-wide-card .image-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 30px;
    padding-left: 20px;
    margin-bottom: -30px;
}

.inv-tabs-section .inv-wide-card .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top left;
    border-top-left-radius: 12px;
    box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: -2px;
    padding-right: 40px;
}

@media (max-width: 900px) {
    .inv-tabs-section .inv-masonry-grid {
        flex-direction: column;
    }

    .inv-tabs-section .inv-masonry-grid .col>.inv-tall-card,
    .inv-tabs-section .inv-masonry-grid .col>.card:last-child {
        flex: none;
    }

    .inv-tabs-section .inv-wide-card {
        flex-direction: column;
    }

    .inv-tabs-section .inv-wide-card .text-content {
        flex: none;
        width: 100%;
        padding-bottom: 20px;
    }

    .inv-tabs-section .inv-wide-card .image-wrapper {
        padding-top: 0;
        padding-left: 20px;
    }

    .inv-tabs-section .inv-wide-card .image-wrapper img {
        border-top-left-radius: 12px;
    }
}

@media (max-width: 600px) {
    .inv-tabs-section .inv-img-flush-bottom {
        padding: 0 25px;
    }

    .inv-tabs-section .inv-wide-card .image-wrapper {
        padding-left: 0;
    }

    .inv-tabs-section .inv-wide-card .image-wrapper img {
        border-top-left-radius: 0;
    }
}

/* ----------------------------------
   Service Tab 4 (Expenses Management) Ported Styles
   ---------------------------------- */

.inv-tabs-section .inv-t5-card {
    border-radius: 12px;
    position: relative;
}

.inv-tabs-section .inv-t5-dark-card {
    background-color: #1a235e;
    /* Invoice Dark Blue */
    color: white;
    overflow: hidden;
    display: flex;
}

.inv-tabs-section .inv-t5-dark-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.inv-tabs-section .inv-t5-dark-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.inv-tabs-section .inv-t5-white-card {
    background-color: #ffffff;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inv-tabs-section .inv-t5-white-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px 0;
}

.inv-tabs-section .inv-t5-white-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.inv-tabs-section .inv-t5-wide-banner {
    flex-direction: row;
    align-items: stretch;
    min-height: 260px;
    margin-bottom: 24px;
}

.inv-tabs-section .inv-t5-wide-banner .text-content {
    flex: 0 0 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.inv-tabs-section .inv-t5-voucher-wrapper {
    flex: 1;
    position: relative;
    min-height: 260px;
}

.inv-tabs-section .inv-t5-voucher-img {
    position: absolute;
    border-radius: 8px;
    height: auto;
}

.inv-tabs-section .inv-t5-voucher-left {
    width: 40%;
    bottom: -10%;
    left: 2%;
    z-index: 1;
}

.inv-tabs-section .inv-t5-voucher-center {
    width: 45%;
    bottom: -5%;
    left: 20%;
    z-index: 3;
    margin-bottom: -15px;
}

.inv-tabs-section .inv-t5-voucher-right {
    width: 55%;
    top: 2%;
    right: 1%;
    z-index: 2;
}

.inv-tabs-section .inv-t5-bottom-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.inv-tabs-section .inv-t5-mobile-card {
    flex: 1;
    flex-direction: column;
}

.inv-tabs-section .inv-t5-mobile-card .text-content {
    padding: 40px 40px 0 40px;
}

.inv-tabs-section .inv-t5-phone-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 30px;
}

.inv-tabs-section .inv-t5-phone-wrapper img {
    width: 55%;
    height: auto;
    display: block;
    margin-bottom: -5px;
}

.inv-tabs-section .inv-t5-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inv-tabs-section .inv-t5-right-stack .inv-t5-white-card {
    flex: 1;
    min-height: 130px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .inv-tabs-section .inv-t5-wide-banner {
        flex-direction: column;
    }

    .inv-tabs-section .inv-t5-wide-banner .text-content {
        flex: none;
        width: 100%;
        padding-bottom: 20px;
    }

    .inv-tabs-section .inv-t5-voucher-wrapper {
        min-height: 280px;
    }

    .inv-tabs-section .inv-t5-bottom-grid {
        flex-direction: column;
    }

    .inv-tabs-section .inv-t5-right-stack .inv-t5-white-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {

    .inv-tabs-section .inv-t5-wide-banner .text-content,
    .inv-tabs-section .inv-t5-mobile-card .text-content,
    .inv-tabs-section .inv-t5-white-card {
        padding: 30px 25px;
    }

    .inv-tabs-section .inv-t5-voucher-left {
        width: 50%;
        left: -5%;
    }

    .inv-tabs-section .inv-t5-voucher-center {
        width: 55%;
        left: 20%;
    }

    .inv-tabs-section .inv-t5-voucher-right {
        width: 50%;
        right: -10%;
    }

    .inv-tabs-section .inv-t5-phone-wrapper img {
        width: 70%;
    }
}

/* ----------------------------------
   Service Tab 6 (More Features) Ported Styles
   ---------------------------------- */
.inv-tabs-section .inv-t6-features-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.inv-tabs-section .inv-t6-dark-card {
    background-color: #1a235e;
    /* Invoice Dark Blue */
    flex: 1.25;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.inv-tabs-section .inv-t6-dark-card .text-content {
    padding: 45px 45px 20px 45px;
    flex: none;
}

.inv-tabs-section .inv-t6-dark-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: white;
}

.inv-tabs-section .inv-t6-dark-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #e2e5eb;
}

.inv-tabs-section .inv-t6-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin-top: 20px;
}

.inv-tabs-section .inv-t6-inv-img {
    position: absolute;
    bottom: -2px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.inv-tabs-section .inv-t6-inv-left {
    left: 3%;
    width: 42%;
    z-index: 1;
}

.inv-tabs-section .inv-t6-inv-center {
    left: 50%;
    transform: translateX(-50%);
    width: 46%;
    z-index: 3;
}

.inv-tabs-section .inv-t6-inv-right {
    right: 8%;
    width: 28%;
    z-index: 3;
}

.inv-tabs-section .inv-t6-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inv-tabs-section .inv-t6-white-card {
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    flex: 1;
}

.inv-tabs-section .inv-t6-icon-circle {
    width: 48px;
    height: 48px;
    background-color: #1a235e;
    /* Invoice dark blue background for the white logo */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
}

.inv-tabs-section .inv-t6-icon-circle img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.inv-tabs-section .inv-t6-white-card h4 {
    font-size: 19px;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px 0;
}

.inv-tabs-section .inv-t6-white-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .inv-tabs-section .inv-t6-features-row {
        flex-direction: column;
    }

    .inv-tabs-section .inv-t6-dark-card {
        min-height: 450px;
    }

    .inv-tabs-section .inv-t6-inv-left {
        width: 45%;
        left: -5%;
    }

    .inv-tabs-section .inv-t6-inv-center {
        width: 55%;
    }

    .inv-tabs-section .inv-t6-inv-right {
        width: 32%;
        right: -2%;
    }
}

@media (max-width: 600px) {
    .inv-tabs-section .inv-t6-white-card {
        padding: 30px;
    }

    .inv-tabs-section .inv-t6-dark-card .text-content {
        padding: 35px 30px 15px 30px;
    }

    .inv-tabs-section .inv-t6-dark-card {
        min-height: 400px;
    }

    .inv-tabs-section .inv-t6-inv-left {
        width: 50%;
        left: -10%;
    }

    .inv-tabs-section .inv-t6-inv-center {
        width: 70%;
    }

    .inv-tabs-section .inv-t6-inv-right {
        width: 35%;
        right: -5%;
    }
}

/* ----------------------------------
   Service Tab 8 (Integrations) Ported Styles
   ---------------------------------- */
.inv-integration-section .inv-t8-integrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.inv-integration-section .inv-t8-split-card {
    background-color: #1a235e;
    /* Invoice Dark Blue */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 40px 40px 0 40px;
}

.inv-integration-section .inv-t8-split-card .text-content {
    flex: 1;
    margin-bottom: 40px;
}

.inv-integration-section .inv-t8-split-card h2 {
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
}

.inv-integration-section .inv-t8-split-card p {
    color: #e2e5eb;
    line-height: 1.6;
}

.inv-integration-section .inv-t8-split-card .image-content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.inv-integration-section .inv-t8-split-card .image-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}


@media (max-width: 900px) {
    .inv-integration-section .inv-t8-integrations-grid {
        grid-template-columns: 1fr;
    }

    .inv-integration-section .inv-t8-split-card {
        padding: 32px 32px 0 32px;
        text-align: center;
    }

    .inv-integration-section .inv-t8-split-card .text-content {
        margin-bottom: 32px;
    }
}

/* ----------------------------------
   Service Tab 7 (Insights & Reports) Ported Styles
   ---------------------------------- */
.inv-tabs-section .inv-t7-reports-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.inv-tabs-section .inv-t7-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inv-tabs-section .inv-t7-card {
    border-radius: 12px;
    position: relative;
}

.inv-tabs-section .inv-t7-white-card {
    background-color: #ffffff;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    min-height: 120px;
    flex: 1;
}

.inv-tabs-section .inv-t7-white-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px 0;
}

.inv-tabs-section .inv-t7-white-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.inv-tabs-section .inv-t7-dark-card {
    background-color: #1a235e;
    /* Invoice Dark Blue */
    color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.inv-tabs-section .inv-t7-tall-card {
    flex: 1;
}

.inv-tabs-section .inv-t7-dark-card .text-content {
    padding: 30px 30px 15px 30px;
}

.inv-tabs-section .inv-t7-dark-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.inv-tabs-section .inv-t7-dark-card p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

.inv-tabs-section .inv-t7-image-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 40px;
    margin-top: 10px;
}

.inv-tabs-section .inv-t7-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: -2px;
}

.inv-tabs-section .inv-t7-profit-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 40px;
    margin-top: 10px;
    min-height: 140px;
}

.inv-tabs-section .inv-t7-profit-wrapper .inv-t7-img-back {
    width: 80%;
    height: auto;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: -2px;
}

.inv-tabs-section .inv-t7-profit-wrapper .inv-t7-img-front {
    position: absolute;
    bottom: -2px;
    right: 30px;
    width: 70%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 2;
}

@media (max-width: 900px) {
    .inv-tabs-section .inv-t7-reports-grid {
        flex-direction: column;
    }

    .inv-tabs-section .inv-t7-tall-card {
        flex: none;
    }
}

@media (max-width: 500px) {

    .inv-tabs-section .inv-t7-dark-card .text-content,
    .inv-tabs-section .inv-t7-white-card {
        padding: 25px 20px;
    }

    .inv-tabs-section .inv-t7-image-wrapper,
    .inv-tabs-section .inv-t7-profit-wrapper {
        padding: 0 20px;
    }

    .inv-tabs-section .inv-t7-profit-wrapper .inv-t7-img-front {
        right: 15px;
        width: 80%;
    }
}

/* =========================================
   Accounting & Expenses Section (from service.css)
========================================= */

.inv-accounting-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.inv-accounting-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.inv-accounting-header h2 {
    font-family: "Rethink Sans";
    font-size: 48px;
    font-weight: 800;
    color: black;
    margin-bottom: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.inv-accounting-header p {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.inv-accounting-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.inv-accounting-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 120px;
    z-index: 10;
    box-shadow:
        0 -4px 20px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.inv-acc-content {
    flex: 1;
    padding: 60px;
}

.inv-acc-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inv-acc-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.inv-acc-content h3 {
    font-family: "Rethink Sans";
    font-size: 31.5px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 40px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.inv-acc-content p {
    font-family: "DM Sans";
    font-size: 15.6px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.inv-acc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inv-acc-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* Light theme icon bubble (Cards 1 & 2) */
.inv-acc-theme-light .inv-icon-wrap {
    background: #1a235e;
    /* Invoice Dark Blue background */
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
}

.inv-acc-theme-light .inv-icon-wrap i {
    display: block;
    width: 14px;
    height: 14px;
    background: url("../images/hero-center-logo.svg") no-repeat center/contain;
    filter: brightness(0) invert(1);
    content: "";
}

/* Dark theme icon bubble (Cards 3 & 4) */
.inv-acc-theme-dark .inv-icon-wrap {
    background: #ffffff;
    /* White background */
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
}

.inv-acc-theme-dark .inv-icon-wrap i {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #1a235e;
    /* Invoice Dark Blue Tick */
    -webkit-mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
    mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
    content: "";
}

/* Hide ::before font awesome content */
.inv-acc-theme-light .inv-icon-wrap i::before,
.inv-acc-theme-dark .inv-icon-wrap i::before {
    display: none;
}

/* First 2 cards point colors - Dark Text */
.inv-accounting-card:nth-child(1) .inv-acc-content h3,
.inv-accounting-card:nth-child(1) .inv-acc-content p,
.inv-accounting-card:nth-child(1) .inv-acc-feature-list li,
.inv-accounting-card:nth-child(2) .inv-acc-content h3,
.inv-accounting-card:nth-child(2) .inv-acc-content p,
.inv-accounting-card:nth-child(2) .inv-acc-feature-list li {
    color: #08352c;
}

/* Last 2 cards point colors - White Text */
.inv-accounting-card:nth-child(3) .inv-acc-content h3,
.inv-accounting-card:nth-child(3) .inv-acc-content p,
.inv-accounting-card:nth-child(3) .inv-acc-feature-list li,
.inv-accounting-card:nth-child(4) .inv-acc-content h3,
.inv-accounting-card:nth-child(4) .inv-acc-content p,
.inv-accounting-card:nth-child(4) .inv-acc-feature-list li {
    color: #ffffff;
}

/* Responsive Accounting */
@media (max-width: 991px) {
    .inv-accounting-section {
        padding: 60px 0;
    }

    .inv-accounting-card {
        flex-direction: column-reverse;
        position: relative;
        top: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        margin-bottom: 40px;
    }

    .inv-acc-content {
        padding: 30px 20px;
        text-align: left;
    }

    .inv-acc-image-wrapper {
        padding: 30px 20px 0;
    }

    .inv-acc-content h3 {
        font-size: 24px;
    }
}

/* =========================================
   Quick Action Section: Customer Search
========================================= */
.inv-quick-action-section {
    padding: 80px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.inv-quick-container {
    max-width: 1100px;
    width: 100%;
}

.inv-quick-label {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 12px;
    display: block;
    color: #1a235e;
    /* Invoice Navy Blue */
}

.inv-quick-main-header {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #333333;
    text-align: center;
    margin: 0 auto 15px auto;
}

.inv-quick-subtext {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #888888;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

/* --- Grid Layout --- */
.inv-qa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.inv-qa-left-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- Cards --- */
.inv-qa-card {
    background-color: #E0F1FD;
    /* Updated Light Blue background from screenshot */
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inv-qa-full-width {
    grid-column: 1 / -1;
    /* span both columns */
}

/* --- Icons --- */
.inv-qa-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #1a235e;
    /* Invoice Navy Blue */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.inv-qa-icon img {
    width: 14px;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

/* --- Card Text --- */
.inv-qa-card h4 {
    font-family: "Rethink Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.inv-qa-card p {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* --- Right Side Image Box --- */
.inv-qa-image-box {
    background-color: #1a235e;
    /* Invoice Navy Blue container matching screenshot */
    border-radius: 16px;
    padding: 30px;
    padding-bottom: 0;
    /* Flush to bottom */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.inv-qa-image-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .inv-qa-grid {
        grid-template-columns: 1fr;
    }

    .inv-qa-left-cards {
        grid-template-columns: 1fr;
    }

    .inv-qa-full-width {
        grid-column: auto;
    }
}

/* =========================================
   Trusted By Section
========================================= */
.inv-trusted-section {
    padding: 60px 0 50px;
    background-color: #1a235e;
    /* Invoice Navy Blue background */
}

.inv-trusted-heading {
    font-family: "Rethink Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.inv-logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.inv-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: inv-scroll 25s linear infinite;
}

.inv-marquee-track img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Make logos white against navy background */
    opacity: 0.85;
    transition: opacity 0.3s;
}

.inv-marquee-track img:hover {
    opacity: 1;
}

@keyframes inv-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll 50% (one full set of 8) */
    }
}

@media (max-width: 768px) {
    .inv-marquee-track img {
        height: 35px;
    }

    .inv-marquee-track {
        gap: 50px;
    }
}

/* =========================================
   Cost Management Section
========================================= */
.inv-cost-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.inv-cost-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    /* 60% image, 40% feature list */
    gap: 40px;
    align-items: stretch;
    /* Both columns same height */
}

/* Left: Image Panel with navy border - 4-sided padding, height matches right column */
.inv-cost-image-panel {
    background-color: #1a235e;
    border-radius: 16px;
    padding: 50px 24px;
    /* Equal padding on all 4 sides */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inv-cost-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Full-width header above both columns */
.inv-cost-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Right: Content styles */
.inv-cost-label {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a235e;
    display: block;
    margin-bottom: 12px;
    text-align: center;
}

.inv-cost-heading {
    font-family: "Rethink Sans", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0 0 16px 0;
    text-align: center;
}

.inv-cost-subtext {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Right content column stretches to match image height */
.inv-cost-content {
    display: flex;
    flex-direction: column;
}

.inv-cost-ideal {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #1a235e;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.inv-cost-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    /* Grow to fill remaining space after .inv-cost-ideal */
}

.inv-cost-feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #E0F1FD;
    border-radius: 10px;
    padding: 24px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    flex: 1;
    /* stretch evenly */
}

.inv-cost-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #1a235e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inv-cost-icon img {
    width: 14px;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

@media (max-width: 900px) {
    .inv-cost-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .inv-cost-heading {
        font-size: 26px;
    }
}

/* =========================================
   Customer Dashboard Section
========================================= */
.inv-dash-section {
    background: #1a235e;
    /* Invoice Navy Blue */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
}

.inv-dash-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.inv-dash-title {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
}

.inv-dash-desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 750px;
    margin: 0 auto;
}

.inv-dash-image-container {
    width: 100%;
    max-width: 900px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.inv-dash-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .inv-dash-title {
        font-size: 32px;
    }

    .inv-dash-section {
        padding-top: 60px;
    }
}

/* =========================================
   Auto-Scrolling Dashboard Cards
========================================= */
.inv-dash-scroll-section {
    background: var(--inv-light-blue);
    padding: 30px 0 50px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.inv-dash-scroll-track {
    display: flex;
    gap: 30px;
    animation: inv-dash-scroll 40s linear infinite;
    width: max-content;
    padding-left: 20px;
}

.inv-dash-scroll-track:hover {
    animation-play-state: paused;
}

.inv-dash-scroll-card {
    background: #ffffff;
    /* Light Blue */
    border-radius: 12px;
    padding: 24px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    transition: transform 0.3s ease;
}

.inv-dash-scroll-card:hover {
    transform: translateY(-5px);
}

.inv-dash-card-icon {
    background: #1a235e;
    /* Invoice Navy Blue */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.inv-dash-card-icon img {
    width: 20px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.inv-dash-card-title {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.inv-dash-card-desc {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

@keyframes inv-dash-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   WhatsApp Chatbot Section - Full Styles
   (Ported from service.css, Invoice Navy Blue theme)
========================================= */
.new-wa-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.new-wa-subtitle {
    display: block;
    color: #1a235e;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: "Rethink Sans", sans-serif;
}

.new-wa-title {
    font-family: "Rethink Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.new-wa-mascot-box img {
    height: 120px;
    width: auto;
}

/* Main card - Invoice Navy Blue */
.new-wa-orange-card {
    background-color: #1a235e;
    background-image: url("../images/billing/bot-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: stretch;
    /* Both cols same height */
}

.new-wa-owner-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 16px;
}

.new-wa-card-title {
    color: #ffffff;
    font-family: "Rethink Sans", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 40px;
}

.new-wa-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-wa-feat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.new-wa-feat-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.new-wa-feat-icon::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: #1a235e;
    -webkit-mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
    mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
}

.new-wa-feat-text h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: "Rethink Sans", sans-serif;
}

.new-wa-feat-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.new-wa-right-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the phone mockup */
}



@media (max-width: 1024px) {
    .new-wa-orange-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .new-wa-header-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .new-wa-title {
        font-size: 32px;
    }

    .new-wa-card-title {
        font-size: 28px;
    }
}

/* GST Filing & Compliance Section */
.inv-gst-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}

.inv-gst-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 5%;
    align-items: stretch;
}

/* Left Content Styles */
.inv-gst-content-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.inv-gst-subtitle {
    color: #1a235e;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 10px 0;
    font-family: "Inter";
}

.inv-gst-title {
    font-size: 42px;
    color: #2d333a;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Inter";
}

.inv-gst-highlight-wrapper {
    position: relative;
    display: inline-block;
}

.inv-gst-description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 95%;
    font-family: "Inter";
}

/* Features Grid Styles */
.inv-gst-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 40px;
}

.inv-gst-feature-item {
    display: flex;
    flex-direction: column;
}

.inv-gst-icon-circle {
    width: 42px;
    height: 42px;
    background: #1a235e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.inv-gst-icon-circle img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.inv-gst-feature-item h3 {
    font-size: 18px;
    color: #111827;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.3;
    font-family: "Inter";
}

.inv-gst-feature-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-family: "Inter";
}

/* Right Content Styles */
.inv-gst-content-right {
    flex: 0 0 45%;
    position: relative;
}

.inv-gst-bg-panel {
    background: #1a235e;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: relative;
}

.inv-img-gst-1 {
    position: absolute;
    /* Pulled down to be more centered vertically */
    top: 10%;
    left: 0px;
    /* Reduced size */
    width: 420px;
    border-radius: 8px;
    z-index: 1;
}

.inv-img-gst-2 {
    position: absolute;
    top: 47%;
    right: 0;
    width: 420px;
    border-radius: 8px;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .inv-gst-container {
        flex-direction: column;
    }

    .inv-gst-content-left {
        flex: 1 1 100%;
    }

    .inv-gst-content-right {
        flex: 1 1 100%;
        margin-top: 60px;
    }

    .inv-img-gst-1 {
        top: 5%;
        left: 10%;
        width: 45%;
    }
}

/* Mobile Apps Section */
/* Mobile Apps section Intro */
.inv-mob-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.inv-mob-subtitle {
    color: #1a235e;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 10px 0;
    font-family: "Inter";
}

.inv-mob-title {
    font-size: 36px;
    color: #2d333a;
    margin: 0 0 10px 0;
    font-weight: 700;
    font-family: "Inter";
}

.inv-mob-description {
    color: #6b7280;
    font-size: 16px;
    margin: 0 auto 50px auto;
    max-width: 600px;
    line-height: 1.6;
    font-family: "Inter";
}

/* Mobile Apps card and details */
.inv-mob-card {
    background-color: #1a235e;
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inv-mob-center-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.inv-mob-app-label {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.inv-mob-app-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.inv-mob-arrow-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto;
}

.inv-mob-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    width: 100%;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.inv-mob-features-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.inv-mob-center-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.inv-mob-left-features .inv-mob-feature-box,
.inv-mob-right-features .inv-mob-feature-box {
    background: rgba(0, 0, 0, 0.08);
    /* Darker subtle overlay */
    border-radius: 12px;
    padding: 24px;
    border: none;
    box-shadow: none;
}

.inv-mob-icon-circle {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.inv-mob-icon-circle img {
    width: 14px;
    height: 14px;
    filter: brightness(1) invert(20);
    /* White checkmark on Navy background */
}

.inv-mob-feature-box h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: "Rethink Sans", sans-serif;
}

.inv-mob-feature-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.inv-mob-phone-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Anchor image to bottom */
}

.inv-mob-phone-img {
    max-width: 320px;
    display: block;
    margin-bottom: 0px;
    margin-top: auto;
}

.inv-mob-play-store {
    margin-top: 40px;
    text-align: center;
    z-index: 3;
}

.inv-mob-play-store img {
    height: 44px;
    /* make it a bit prominent */
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .inv-mob-grid {
        grid-template-columns: 1fr;
    }

    .inv-mob-phone-col {
        order: 1;
        /* Bring phone to top */
        margin-bottom: 40px;
    }

    .inv-mob-phone-img {
        margin-bottom: 0;
        /* Reset */
    }

    .inv-mob-left-features {
        order: 2;
    }

    .inv-mob-right-features {
        order: 3;
    }

    .inv-mob-card {
        padding: 40px;
    }

    .inv-mob-play-store {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }
}

/* Pricing Section */
.inv-pricing-section {
    padding: 40px 20px;
    background-color: #f9fafb;
    text-align: center;
}

.inv-pricing-title-wrapper {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.inv-pricing-title {
    font-size: 36px;
    color: #2d333a;
    font-weight: 700;
    font-family: "Inter";
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

/* Custom underline for "Pricing Plans" */
.inv-pricing-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.inv-pricing-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    /* Adjust based on font baseline */
    width: 100%;
    height: 8px;
    /* Thickness of the underline */
    background-color: #c1eac5;
    /* Light green underline color */
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
    /* Slight tilt for "hand-drawn" look */
}

.inv-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    align-items: stretch;
    flex-wrap: wrap;
}

.inv-pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.inv-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Most Popular Card Styles */
.inv-pricing-card.popular {
    background-color: #E0F1FD;
    border: 1px solid #1a235e;
    transform: scale(1.02);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a235e;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.inv-plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.inv-plan-price {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
    font-family: "Inter";
}

.inv-plan-period {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 25px;
}

.inv-pricing-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a235e;
    color: white;
    font-weight: 600;
    font-size: 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 25px;
    transition: background-color 0.2s;
    width: 100%;
}

.inv-pricing-btn:hover {
    background-color: #c13b26;
}

/* Feature List */
.inv-features-header {
    font-size: 13px;
    font-weight: 700;
    color: #1a235e;
    text-align: left;
    margin-bottom: 15px;
}

.inv-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.inv-pricing-feature-item {
    font-size: 13px;
    color: #374151;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.inv-pricing-feature-item::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    background-color: #E0F1FD;
    color: #1a235e;
    font-size: 9px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin-top: 40px;
    margin-bottom: 40px;
}

.inv-pricing-disclaimer {
    font-family: "Inter";
    color: #333333;
    font-weight: 600;
    font-size: 13.5px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
    margin-top: -40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* Add-on Section */
.inv-pricing-addon-section {
    background-color: #E0F1FD;
    border-radius: 16px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
    gap: 30px;
}

.inv-pricing-addon-text {
    flex: 1;
    padding-right: 30px;
    border-right: 1px solid #d7d7d7;
}

.inv-pricing-addon-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
}

.inv-pricing-addon-text p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

.inv-pricing-addon-btn {
    background-color: #1a235e;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.inv-pricing-addon-btn:hover {
    background-color: #121c4a;
}

/* CTA and FAQ Sections */


/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.cta-card {
    background-color: #00252C;
    border-radius: 20px;
    padding: 40px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-image: url('../images/ctashape.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 36px;
    font-family: 'Rethink Sans';
    font-weight: 600;
    line-height: 44px;
    margin-bottom: 15px;
    color: white;
}

.cta-card p {
    font-size: 16px;
    font-family: 'DM Sans';
    font-weight: 300;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-phone {
    background: #0A2875;
    color: white;
    border: none;
}


.btn-email {
    background: white;
    color: #0A2875;
    border: 1px solid rgba(255, 255, 255, 0.3);
}



.btn-email i {
    color: #0A2875;
}

/* ========================================
   FAQ SECTION (Restored Billing Design with Invoice Theme)
   ======================================== */
.inv-faq-section {
    background: #fff;
    background-image: none;
    padding: 80px 0;
}

.inv-faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.inv-faq-centered {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inv-faq-section .section-sub-heading {
    color: #0A2875;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.inv-faq-section .section-heading {
    color: #0A2875;
    text-align: center;
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 40px;
}

.inv-faq-section .faq-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.inv-faq-section .faq-item.active {
    background: #fff;
    border-color: var(--inv-primary, #1a235e);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 35, 94, 0.1);
}

.inv-faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inv-faq-section .faq-question h3 {
    font-family: "Rethink Sans";
    font-weight: 600;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 0;
    color: #170f49;
    margin: 0;
    padding-right: 20px;
}

.inv-faq-section .toggle-icon {
    background: var(--inv-primary, #1a235e);
    color: #fff;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inv-faq-section .faq-answer {
    margin-top: 0;
    padding-top: 0;
    color: #6f6c8f;
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: 166%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.inv-faq-section .faq-item.active .faq-answer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    max-height: 200px;
    opacity: 1;
}

.inv-faq-section .faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   MULTIPLE INVOICE FORMATS SECTION
   ======================================== */
.inv-showcase-section {
    padding: 80px 20px;
    background: #ffffff;
}

.inv-showcase-container {
    max-width: 1250px;
    margin: 0 auto;
}

.inv-showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.inv-showcase-badge {
    display: block;
    color: #2148AA;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: "DM Sans";
}

.inv-showcase-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.2;
    font-family: "Rethink Sans";
}

.inv-showcase-header p {
    font-size: 17px;
    color: #6b7280;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.5;
    font-family: "DM Sans";
}

.inv-showcase-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.inv-showcase-side-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inv-showcase-feature-card {
    background-color: #EEF3FF;
    padding: 20px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.inv-showcase-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #2148AA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.inv-showcase-icon-circle img {
    width: 11px;
    height: 11px;
    filter: brightness(0) invert(1);
}

.inv-showcase-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-family: "Rethink Sans";
}

.inv-showcase-feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-family: "DM Sans";
}

.inv-showcase-center-col {
    background-color: #2148AA;
    flex: 1.4;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

.inv-showcase-center-col .inv-showcase-img {
    position: absolute;
    border-radius: 8px;
}

.inv-img-1 {
    top: 2%;
    left: 40%;
    transform: translateX(-50%);
    width: 68%;
    z-index: 1;
}

.inv-img-3 {
    bottom: 1px;
    left: -2%;
    width: 75%;
    z-index: 2;
    margin-bottom: -25px;
}

.inv-img-4 {
    bottom: -2px;
    right: 1%;
    width: 61%;
    z-index: 3;
    margin-bottom: -25px;
}

.inv-img-2 {
    top: 17%;
    right: 10%;
    width: 40%;
    z-index: 2;
}

@media (max-width: 1100px) {
    .inv-showcase-grid {
        flex-direction: column;
    }

    .inv-showcase-center-col {
        order: -1;
        min-height: 500px;
        width: 100%;
        margin-bottom: 24px;
    }

    .inv-showcase-side-col {
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
    }

    .inv-showcase-feature-card {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .inv-showcase-header h2 {
        font-size: 32px;
    }

    .inv-showcase-side-col {
        flex-direction: column;
    }

    .inv-showcase-feature-card {
        flex: 1 1 100%;
    }

    .inv-showcase-center-col {
        min-height: 450px;
    }

    .inv-img-1 {
        width: 90%;
        top: 4%;
    }

    .inv-img-3 {
        width: 60%;
        left: -5%;
    }

    .inv-img-4 {
        width: 60%;
        right: -5%;
    }

    .inv-img-2 {
        width: 35%;
        right: 5%;
        top: 30%;
    }
}

@media (max-width: 480px) {
    .inv-showcase-center-col {
        min-height: 380px;
    }

    .inv-img-1 {
        width: 95%;
    }

    .inv-img-3 {
        width: 65%;
        left: -8%;
    }

    .inv-img-4 {
        width: 65%;
        right: -8%;
    }

    .inv-img-2 {
        width: 40%;
        right: 2%;
    }

    .inv-showcase-feature-card {
        padding: 24px 20px;
    }
}

/* ========================================
   MULTI-USER ACCESS SECTION (Invoice)

   ======================================== */
.inv-mu-section {
    padding: 80px 20px;
    background: #ffffff;
}

.inv-mu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    align-items: start;
}

.inv-mu-text-block {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.inv-mu-image-block {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.inv-mu-subtitle {
    color: #2148AA;
    font-family: "DM Sans";
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.inv-mu-title {
    font-family: "Rethink Sans";
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.25;
    margin: 0 0 20px 0;
}

.inv-mu-desc {
    font-family: "DM Sans";
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 95%;
}

.inv-mu-main-img {
    width: 80%;
    max-width: 550px;
    height: auto;
    display: block;
    padding-top: 50px;
}

.inv-mu-feat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.inv-mu-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(90deg, #2148AA 0%, #3a6fd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.inv-mu-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.inv-mu-feat-item h3 {
    font-family: "Rethink Sans";
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.inv-mu-feat-item p {
    font-family: "DM Sans";
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .inv-mu-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .inv-mu-text-block {
        grid-column: span 2;
    }

    .inv-mu-image-block {
        grid-column: span 2;
        grid-row: auto;
        justify-content: center;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .inv-mu-container {
        grid-template-columns: 1fr;
    }

    .inv-mu-title {
        font-size: 30px;
    }
}

/* ========================================
   ONBOARDING & SUPPORT SECTION (Invoice)
   ======================================== */
.inv-ob-section {
    padding: 100px 20px;
    background: #0A2875;
    color: white;
}

.inv-ob-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.inv-ob-left {
    flex: 0 0 45%;
    position: sticky;
    top: 120px;
    padding-bottom: 40px;
}

.inv-ob-subtitle {
    font-family: "DM Sans";
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px 0;
}

.inv-ob-title {
    font-family: "Rethink Sans";
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px 0;
}

.inv-ob-desc {
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.inv-ob-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inv-ob-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    color: #111827;
}

.inv-ob-card h3 {
    font-family: "Rethink Sans";
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.inv-ob-card p {
    font-family: "DM Sans";
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.inv-ob-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inv-ob-list li {
    font-family: "DM Sans";
    font-size: 14.5px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.inv-ob-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: linear-gradient(90deg, #2148AA 0%, #3a6fd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.inv-ob-icon img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .inv-ob-container {
        flex-direction: column;
        gap: 40px;
    }

    .inv-ob-left {
        position: static;
        flex: none;
        width: 100%;
    }

    .inv-ob-title {
        font-size: 32px;
    }
}

.wa-chatbot-section {
    padding: 80px 20px;
    background-color: #ffffff;
    max-width: 1500px !important;
    margin: 0 auto;
}

.inv-integration-section {
    padding: 80px 0;
    background-color: var(--inv-light-blue);
}

.inv-integration-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.inv-integration-subtitle {
    display: inline-block;
    color: var(--inv-primary, #1a235e);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.inv-integration-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--inv-dark, #333333);
    line-height: 1.3;
    margin-bottom: 16px;
}

.inv-integration-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* ----------------------------------
   Expenses Tab Final Horizontal Card Ported Styles
   ---------------------------------- */
.inv-tabs-section .exp-wide-card {
    background-color: #1a235e;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 340px;
}

.inv-tabs-section .exp-text-content {
    flex: 0 0 35%;
    padding: 50px 40px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.inv-tabs-section .exp-text-content h3 {
    font-family: "Rethink Sans";
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.inv-tabs-section .exp-text-content p {
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #f3f4f6;
    opacity: 0.95;
}

.inv-tabs-section .exp-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.inv-tabs-section .exp-img-back {
    position: absolute;
    bottom: -2px;
    left: -50px;
    width: 65%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 1;
}

.inv-tabs-section .exp-img-front {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 60%;
    height: auto;
    border-top-left-radius: 8px;
    z-index: 2;
}

@media (max-width: 900px) {
    .inv-tabs-section .exp-wide-card {
        flex-direction: column;
        min-height: 500px;
    }

    .inv-tabs-section .exp-text-content {
        flex: none;
        padding: 40px 30px 20px 30px;
    }

    .inv-tabs-section .exp-image-wrapper {
        min-height: 250px;
    }

    .inv-tabs-section .exp-img-back {
        width: 80%;
        left: 5%;
    }

    .inv-tabs-section .exp-img-front {
        width: 70%;
        right: 0;
    }
}

@media (max-width: 600px) {
    .inv-tabs-section .exp-wide-card {
        min-height: 450px;
    }

    .inv-tabs-section .exp-text-content h3 {
        font-size: 22px;
    }

    .inv-tabs-section .exp-img-back {
        width: 90%;
        left: 0;
        border-top-left-radius: 0;
    }

    .inv-tabs-section .exp-img-front {
        width: 80%;
    }
}