/**
 * SpendMantra Global Styles
 */

:root {
    /* Colors */
    --primary-color: #008AC9;
    /* Main Brand Blue */
    --primary-hover: #0974a5;
    --accent-green: #00a884;
    /* Hero highlight green */
    --secondary-color: #f8fafc;
    --text-dark: #334155;
    --text-muted: #303D50;
    --bg-light: #f5f5f5;
    --bg-dark: #1D224B;
    /* Dark section background */
    --border-color: #e2e8f0;

    /* Spacing (8px system) */
    --spacing-1: 8px;
    --spacing-2: 16px;
    --spacing-3: 24px;
    --spacing-4: 32px;
    --spacing-5: 40px;
    /* Functional Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;

    /* Premium SaaS Semantic Colors */
    --c-blue: #3B82F6;
    --c-teal: #14B8A6;
    --c-green: #10B981;
    --c-indigo: #6366F1;
    --c-orange: #F59E0B;
    --c-purple: #8B5CF6;

    --spacing-6: 48px;
    --spacing-8: 64px;
    --spacing-10: 80px;
    --spacing-12: 96px;

    /* Typography */
    --font-family-base: 'Outfit', system-ui, -apple-system, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Global Reset & Base */
body {
    font-family: var(--font-family-base);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-2);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}


.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #006FA0 !important;
    border-color: #006FA0 !important;
}

/* .btn-primary {
    box-shadow: 0 4px 14px 0 rgba(0, 111, 160, 0.39);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 111, 160, 0.23);
} */

.shadow-btn {
    -webkit-box-shadow: 0px 0px 45px -1px rgba(0, 111, 160, 0.13);
    -moz-box-shadow: 0px 0px 45px -1px rgba(0, 111, 160, 0.13);
    box-shadow: 0px 0px 45px -1px rgb(0 111 160 / 28%);
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-light-info {
    background: linear-gradient(180deg, #f0f7ff 0%, #f0f7ff 100%);
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

/* Utilities */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-2);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-6);
}

.fs-sm {
    font-size: 0.875rem;
}

.max-w-700 {
    max-width: 700px;
}

.hover-white:hover {
    color: white !important;
}

/* 1. Header */
.header {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.header.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #f0f7ff 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-after::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background-image: url("../images/dashboard/World_map.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* Feature Cards (Finance Team Needs) */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02) !important;
}

.feature-card:hover,
.feature-card.active {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.08) !important;
    border-top: 3px solid #008AC9 !important;
}

.feature-card .icon-box {
    width: 44px;
    height: 44px;
    background-color: #f0f7ff !important;
    color: var(--primary-color) !important;

}

.feature-card.active .icon-box,
.feature-card:hover .icon-box {
    /* background-color: var(--primary-color) !important; */
    color: white !important;
    background: rgba(0, 138, 201, 1);
    background: -moz-linear-gradient(left, rgba(0, 138, 201, 1) 0%, rgba(20, 27, 69, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 138, 201, 1)), color-stop(100%, rgba(20, 27, 69, 1)));
    background: -webkit-linear-gradient(left, rgba(0, 138, 201, 1) 0%, rgba(20, 27, 69, 1) 100%);
    background: -o-linear-gradient(left, rgba(0, 138, 201, 1) 0%, rgba(20, 27, 69, 1) 100%);
    background: -ms-linear-gradient(left, rgba(0, 138, 201, 1) 0%, rgba(20, 27, 69, 1) 100%);
    background: linear-gradient(to right, rgba(0, 138, 201, 1) 0%, rgba(20, 27, 69, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008ac9', endColorstr='#141b45', GradientType=1);
}

.feature-img img {
    -webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
}

/* Custom Tabs */
.custom-tabs {}

.custom-tabs .nav-item {
    margin: 0;
}


/* Custom Showcase Tabs */
.custom-tabs {
    border-bottom: 0;
}

.custom-tabs .nav-link {
    background-color: #ffffff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px !important;
    font-weight: 500;
    padding: 0.6rem 1.25rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.custom-tabs .nav-link:hover:not(.active) {
    border-color: #cbd5e1;
    color: #334155;
    background-color: #f8fafc;
}

.custom-tabs .nav-link.active {
    background-color: #008AC9 !important;
    color: #ffffff !important;
    border-color: #008AC9 !important;
    box-shadow: 0 8px 24px -6px rgba(14, 165, 233, 0.5) !important;
}


/* Accordion */
.custom-accordion .accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px 24px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #f8fafc !important;
    color: var(--primary-color) !important;
    box-shadow: none;
    border-left: 4px solid var(--primary-color) !important;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-body {
    padding: 0 24px 24px 24px;
    background-color: #f8fafc;
    color: var(--text-muted);
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.marquee-content {
    display: inline-flex;
    animation: scroll 35s linear infinite;
    gap: 24px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

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

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

.client-logo-card {
    background: white;
    /* border: 1px solid var(--border-color); */
    border-radius: 5px;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    -webkit-box-shadow: 0px 0px 30px 11px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 30px 11px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 30px 11px rgba(0, 0, 0, 0.06);
}

.client-logo-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.client-logo-card img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Horizontal Workflow Canvas Styles */
.scroll-wrapper {
    width: 100%;

}

.wrapper:active {
    cursor: grabbing;
}

.inner-wrapper {
    min-width: max-content;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    min-height: 100%;
}

.workflow-bg-gradient {
    background: linear-gradient(135deg, #131B37 0%, #1A2244 100%) !important;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(7, 160px);
    grid-template-rows: repeat(6, auto);
    gap: 30px 45px;
    align-items: center;
    position: relative;
    justify-content: center;
}

.workflow-card {
    background-color: #111827 !important;
    border: 1px solid var(--node-color) !important;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: auto;
    min-height: 110px;
    padding: 16px 12px;
    color: white;
}

.workflow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.workflow-card .icon {
    color: var(--node-color);
    font-size: 1.6rem;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

.workflow-card:hover .icon {
    transform: scale(1.1);
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
    color: white;
}

.card-text {
    font-size: 12px;
    color: #94A3B8;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

.node-badge {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    min-width: 24px;
    padding: 0 6px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background-color: var(--node-color);
    color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.decision-node-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.decision-node {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.decision-node::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111827;
    border: 2px solid var(--node-color);
    border-radius: 12px;
    transform: rotate(45deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: -1;
    top: 13px;
}


.decision-node .icon {
    color: var(--node-color);
    font-size: 1.5rem;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.decision-node:hover .icon {
    transform: scale(1.1);
}

.decision-node-text {
    position: absolute;
    text-align: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 37px;
}

#lines,
#labels {
    pointer-events: none;
}

.connector-line {
    fill: none;
    stroke-width: 2px;
    opacity: 0.5;
}

.path-label {
    position: absolute;
    font-size: 11px;
    font-weight: 700;
    background: var(--bg-dark);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    z-index: 5;
    color: white;
}

/* Demo Form Input */
.form-control,
.form-select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
}

.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder {
    color: #9ca3af !important;
    /* Light gray */
    opacity: 1;
    /* Override Firefox's default opacity */
    font-size: 14px;
}

.card-bg-light {
    background-color: #E2E9F0;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
    background-color: white;
}

@media (min-width: 768px) {
    .stat-col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 767px) {
    .stat-col:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 2rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Footer Demo Form Styles */
.footer-demo-form ::placeholder {
    color: #64748b !important;
    opacity: 1;
}

@media (min-width: 992px) {
    .footer-demo-form {
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        background-color: rgba(0, 0, 0, 0.2);
    }
}


/* Extracted Inline Styles from index.html */

.img-max-h-40 {
    max-height: 40px;
}

.text-primary-important {
    color: var(--primary-color) !important;
}

.hero-pill-badge {
    background-color: #e8f4f9;
    border: 1px solid #bde0f2;
    color: #006699;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-pill-icon {
    font-size: 0.45rem;
    color: #0088cc;
    margin-right: 12px;
}

.ls-tight {
    letter-spacing: -1px;
}

.text-gradient-primary {
    background: linear-gradient(90deg, #0088cc 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
}

.fs-sm {
    font-size: 0.85rem;
}

.fs-xs {
    font-size: 0.8rem;
}

.btn-custom-primary {
    background-color: #008AC9;
    border-color: #008AC9;
}

.hero-map-img {
    filter: grayscale(100%) opacity(0.2) contrast(200%);
    transform: scale(1.1);
}

.bg-light-custom {
    background-color: #f8fafc;
}

.text-dark-custom.ls-tighter {
    color: #172036;
    letter-spacing: -0.5px;
}

.floating-card-top-left {
    top: 15%;
    left: -35px;
    z-index: 2;
}

.floating-card-top-right {
    top: -8%;
    right: 5%;
    z-index: 2;
}

.floating-card-bottom-left {
    bottom: 15%;
    left: -35px;
    z-index: 2;
}

.floating-card-bottom-right {
    bottom: -15%;
    right: 15%;
    z-index: 2;
}

.icon-square-40 {
    width: 40px;
    height: 40px;
}

.icon-square-48 {
    width: 48px;
    height: 48px;
}

.text-dark-blue {
    color: #2b3a4a;
}

.max-w-650 {
    max-width: 650px;
}

.text-dark-slate {
    color: #172036;
}

.fs-xs.lh-relaxed {
    font-size: 0.8rem;
    line-height: 1.6;
}

.max-w-100 {
    max-width: 100%;
}

.z-0.overflow-visible {
    z-index: 0;
    overflow: visible;
}

.z-5 {
    z-index: 5;
}

.workflow-node-1 {
    grid-column: 1;
    grid-row: 2;
    --node-color: var(--c-blue);
}

.workflow-node-2 {
    grid-column: 2;
    grid-row: 2;
    --node-color: var(--c-blue);
}

.workflow-node-3a {
    grid-column: 3;
    grid-row: 1;
    --node-color: var(--c-teal);
}

.workflow-node-3b {
    grid-column: 3;
    grid-row: 2;
    --node-color: var(--c-teal);
}

.workflow-node-3c {
    grid-column: 3;
    grid-row: 3;
    --node-color: var(--c-teal);
}

.workflow-node-4a {
    grid-column: 4;
    grid-row: 1;
    --node-color: var(--c-green);
}

.workflow-node-4b {
    grid-column: 4;
    grid-row: 2;
    --node-color: var(--c-green);
}

.workflow-node-4c {
    grid-column: 4;
    grid-row: 3;
    --node-color: var(--c-green);
}

.workflow-node-5b {
    grid-column: 5;
    grid-row: 2;
    --node-color: var(--c-teal);
}

.workflow-node-6 {
    grid-column: 6;
    grid-row: 2;
    --node-color: var(--c-indigo);
}

.workflow-node-7 {
    grid-column: 6;
    grid-row: 3;
    --node-color: var(--c-indigo);
}

.workflow-node-dia-container {
    grid-column: 4;
    grid-row: 4;
}

.workflow-node-dia {
    --node-color: var(--c-orange);
}

.workflow-node-8a {
    grid-column: 2;
    grid-row: 5;
    --node-color: var(--c-orange);
}

.workflow-node-9a {
    grid-column: 3;
    grid-row: 5;
    --node-color: var(--c-orange);
}

.workflow-node-8b {
    grid-column: 5;
    grid-row: 5;
    --node-color: var(--c-orange);
}

.workflow-node-9b {
    grid-column: 6;
    grid-row: 5;
    --node-color: var(--c-orange);
}

.workflow-node-10 {
    grid-column: 4;
    grid-row: 6;
    --node-color: var(--c-purple);
}

.workflow-node-11 {
    grid-column: 5;
    grid-row: 6;
    --node-color: var(--c-purple);
}

.workflow-node-12 {
    grid-column: 6;
    grid-row: 6;
    --node-color: var(--c-purple);
}

.max-w-1000 {
    max-width: 1000px;
}

.circle-12 {
    width: 12px;
    height: 12px;
}

.bg-dark-blue {
    background-color: #111a28;
}

.stat-number-gradient {
    font-size: 3rem;
    letter-spacing: -1px;
    background: linear-gradient(180deg, #ffffff 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-title {
    font-size: 0.95rem;
    line-height: 1.4;
}

.text-slate.fs-xs {
    color: #64748b;
    font-size: 13px;
}

.floating-badge-top-left {
    top: 8%;
    left: -100px;

}

.floating-badge-bottom-right {
    bottom: 12%;
    right: -80px;

}

.fs-xl {
    font-size: 1.25rem;
}

.fs-md {
    font-size: 0.9rem;
}

.fs-xxs {
    font-size: 0.65rem;
}

.max-w-800 {
    max-width: 800px;
}

.bg-footer-dark {
    background-color: #1e2532 !important;
}

.badge-promo {
    background-color: #1e3a8a;
    color: #60a5fa;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.promo-title {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.2;
}

.promo-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

.fs-lg {
    font-size: 1.1rem;
}

.promo-check-text {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.hr-faint {
    border-color: rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.text-slate {
    color: #64748b;
}

.contact-info-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

.form-input-dark {
    background-color: #2f374d;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #494f62 !important;
}

.form-input-dark:focus {
    background-color: #2f374d;
    box-shadow: none;
}

.border-radius-8.overflow-hidden {
    border-radius: 8px;
    overflow: hidden;
}

.form-input-icon-dark {
    background-color: #334155;
    padding-left: 1rem;
}

.form-input-dark-no-radius {
    background-color: #334155;
    padding: 0.8rem 1rem;
}

.btn-demo-submit {
    background-color: #0ea5e9;
    border-radius: 8px;
}

.border-color-faint {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff !important;
}

/* Company Snapshot Card */
.company-snapshot-card {
    background-color: #12275C;
    border-radius: 1rem;
    border-top: 5px solid #4F7FEB;
}

.snapshot-grid-bg {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.snapshot-subtitle {
    color: #93C5FD;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.snapshot-icon-box {
    width: 42px;
    height: 42px;
    background-color: #1E3A8A;
    border: 1px solid #3B82F6;
}

.snapshot-inner-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.snapshot-indicator-blue {
    width: 24px;
    height: 24px;
    background-color: #1E3A8A;
}

.snapshot-indicator-green {
    width: 24px;
    height: 24px;
    background-color: rgba(22, 163, 74, 0.2);
}

.snapshot-icon-green {
    color: #4ADE80;
    font-size: 0.75rem;
}

.snapshot-label {
    color: #94A3B8;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.snapshot-text-blue {
    color: #60A5FA;
    font-size: 0.9rem;
}

.snapshot-text-green {
    color: #4ADE80;
    font-size: 0.9rem;
}

.snapshot-location-box {
    width: 56px;
    height: 56px;
    background-color: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.snapshot-text-yellow {
    color: #FBBF24;
    font-size: 0.9rem;
}

.snapshot-hiring-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    box-shadow: 0 0 8px #22C55E;
}

.snapshot-hiring-text {
    color: #94A3B8;
    font-size: 0.9rem;
}

/* Mobile App Floating Badges */
.floating-badge {
    white-space: nowrap;
}

.floating-icon-success {
    background-color: #dcfce7;
    color: #16a34a;
}

.floating-icon-info {
    background-color: #e0f2fe;
    color: #0284c7;
}

.floating-badge-text {
    font-size: 12px;
}

.client-logo-all {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 2rem;
    margin: 0 auto;
}

.client-logo-card-inner,
.client-logo-card-inner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex: 0 0 auto; */
    padding: 0 0.5rem;
}

.client-logo-card-inner img,
.client-logo-card-inner-inner img {
    /* Based on the 49px height in your Figma screenshot */
    max-height: 45px;
    max-width: 180px;
    /* Allow wider logos to display correctly */
    width: auto;
    object-fit: contain;

    transition: all 0.3s ease;
}

.client-logo-card-inner:hover img,
.client-logo-card-inner-inner:hover img {
    filter: grayscale(0%) opacity(100%);
}

/* Journey Timeline Section */
.journey-timeline-wrapper {
    margin: 5rem auto;
    padding: 0;
}

.timeline-track {
    align-items: center;
    height: 20px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 2%;
    right: 2%;
    height: 1px;
    background-color: #dee2e6;
    z-index: 0;
}

.timeline-item {
    position: relative;
    cursor: pointer;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 12.5%;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid var(--item-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
}

.timeline-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--item-color);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    width: 170px;
    transition: all 0.3s ease;
}

.timeline-card .year {
    color: var(--item-color);
}

.timeline-item.active .timeline-card {
    background-color: var(--item-bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.timeline-item.active .timeline-dot {
    background-color: var(--item-color);
    box-shadow: 0 0 0 4px var(--item-bg);
}

.top-card {
    bottom: 35px;
}

.bottom-card {
    top: 35px;
}

.journey-details-box {
    transition: all 0.3s ease;
}


/* Comparison Cards */
.comparison-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comparison-body li {
    background-color: #0D1B3E;
    padding: 7px 13px;
    border-radius: 5px;
    border: 1px solid #192b59;
}

.without-card {
    background: rgba(220, 53, 69, 0.03);
    border-color: rgba(220, 53, 69, 0.2) !important;
}

.without-card .comparison-header {
    background: rgba(220, 53, 69, 0.08);
    border-bottom: 1px solid rgba(220, 53, 69, 0.15);
}

.with-card {
    background: rgba(25, 135, 84, 0.03);
    border-color: rgba(25, 135, 84, 0.2) !important;
}

.with-card .comparison-header {
    background: rgba(25, 135, 84, 0.08);
    border-bottom: 1px solid rgba(25, 135, 84, 0.15);
}

.indicator-dot {
    width: 10px;
    height: 10px;
}

.comparison-body .text-white-50 {
    font-size: 0.95rem;
}

.contact-office-card {
    background-color: #F8FDFF;
    border: 1px solid #D6E8F0;
}

.contact-office-card p {
    font-size: 15px;
    line-height: 22px;
}

.compliance-badge-container {
    background-color: #F5FCFF;
}

/* ==========================================================================
   Global Responsive Styles
   ========================================================================== */

@media (max-width: 991px) {

    /* Vertical Timeline for Mobile/Tablet */
    .journey-timeline-wrapper {
        padding: 20px 15px !important;
        overflow-x: hidden;
        margin-bottom: 0;
    }

    .timeline-track {
        flex-direction: column;
        min-width: 100% !important;
        height: auto !important;
        gap: 1.5rem;
        padding-left: 15px;
    }

    .timeline-line {
        top: 0 !important;
        left: 22px !important;
        right: auto !important;
        width: 2px !important;
        height: 100% !important;
        transform: none !important;
    }

    .timeline-item {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .timeline-dot {
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }

    .timeline-item:hover .timeline-dot {
        transform: translateY(-50%) scale(1.2) !important;
    }

    .timeline-item.active .timeline-dot {
        box-shadow: 0 0 0 4px var(--item-bg) !important;
    }

    .timeline-card {
        position: relative !important;
        left: 45px !important;
        transform: none !important;
        width: calc(100% - 50px) !important;
        max-width: 100% !important;
        margin: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
}

/* Lazy Loading Image Styles */
img.lazy-img {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

img.lazy-img.loaded {
    opacity: 1;
}

@media (max-width: 767px) {
    .promo-title {

        font-size: 1.8rem;

    }

    /* Typography Scaling */
    .display-6 {
        font-size: 1.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .floating-badge-top-left,
    .floating-badge-bottom-right {

        display: none !important;
    }

    .hero-pill-badge,
    .feature-pill {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* Workflow Horizontal Scrolling Fix */
    .scroll-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        width: 100%;
    }

    .inner-wrapper {
        min-width: max-content;
        padding: 0 15px;
    }

    .scroll-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .scroll-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .scroll-wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }

    /* Footer Demo Form */
    .footer-demo-form {
        padding: 2rem 1.5rem !important;
        margin-top: 2rem;
        border-radius: 12px;
    }

    /* Promo / Left footer */
    .site-footer .col-lg-6.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 1rem !important;
    }

    /* Product Showcase Tabs Horizontal Scroll */
    .custom-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        padding-bottom: 15px;
        /* Space for scrollbar */
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .custom-tabs::-webkit-scrollbar {
        height: 0px;
        /* Hide scrollbar for a cleaner look on mobile, but keep scrollable */
    }

    .custom-tabs .nav-item {
        white-space: nowrap;
    }
}

@media (max-width: 575px) {

    .client-logo-card-inner,
    .client-logo-card-inner-inner {

        padding: 10px;
        border: 1px solid #f2f2f2;
        width: 154px;
    }

    .client-logo-card-inner img,
    .client-logo-card-inner-inner img {
        max-height: 45px;
        max-width: inherit;
        width: 85%;

    }

    .hero-pill-badge,
    .feature-pill {

        display: none !important;
    }

  .display-5 {
    font-size: 2rem;
}

}