/* Base Styles */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: rgba(255, 107, 53, 0.1);
    --secondary-color: #333333;
    --accent-color: #4a6bff;
    --accent-light: rgba(74, 107, 255, 0.1);
    --light-bg: #f8f8f8;
    --folder-active: #ff6b35;
    --folder-inactive: #e0e0e0;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition: background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Optimized */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow-x: hidden;
    /* background-attachment: fixed; */ /* Removed for performance */
    background-size: cover;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* Dashboard Container */
.ai-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    position: relative;
}

@media (max-width: 768px) {
    .ai-dashboard-container {
        padding: 15px;
    }
}

/* ---------- 2.1 Header ---------- */
.lz-header {
    padding: 32px 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 100;
}

.lz-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Logo */
.custom-logo-link img {
    height: 60px;
    width: auto;
    max-height: 60px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Optimized */
}

.custom-logo-link:hover img {
    transform: scale(1.05);
}

.lz-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Optimized */
}

.lz-logo-text:hover {
    color: var(--primary-color);
}

.lz-logo-text,
.custom-logo-link {
    flex-shrink: 0;
}

/* Navigation */
.lz-nav {
    margin-left: 32px;
}

.lz-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lz-menu li {
    position: relative;
}

/* Support for WordPress menu items */
.lz-menu li a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    display: block;
}

/* Support for WordPress sub-menus */
.lz-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 10px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; /* Optimized */
    z-index: 100;
}

.lz-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lz-menu .sub-menu li {
    padding: 0;
}

.lz-menu .sub-menu a {
    padding: 8px 20px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease; /* Optimized */
}

.lz-menu .sub-menu a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* Menu item hover effect */
.lz-menu > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: .3s;
}

.lz-menu > li > a:hover::after {
    width: 100%;
}

/* Current menu item styling */
.lz-menu .current-menu-item > a,
.lz-menu .current-menu-parent > a {
    color: var(--primary-color);
}

/* CTA Button */
.lz-cta {
    margin-left: auto;
    padding: 16px 38px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Gradient sheen animation on hover */
.lz-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease; /* Optimized */
    z-index: 0;
}

.lz-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 32px rgba(255, 107, 53, 0.45);
    color: #fff;
}

.lz-cta:hover::before {
    left: 100%;
}

.lz-cta i,
.lz-cta span {
    position: relative;
    z-index: 1;
}

/* Mobile Navigation */
.lz-nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 10px;
    width: 46px;
    height: 46px;
    position: relative;
    z-index: 100;
}

.lz-burger,
.lz-burger::before,
.lz-burger::after {
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.lz-burger {
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
}

.lz-burger::before {
    content: '';
    top: -8px;
    transform-origin: center;
}

.lz-burger::after {
    content: '';
    bottom: -8px;
    transform-origin: center;
}

.lz-nav-toggle.is-open .lz-burger {
    background: transparent;
}

.lz-nav-toggle.is-open .lz-burger::before {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary-color);
}

.lz-nav-toggle.is-open .lz-burger::after {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary-color);
}

@media (max-width: 900px) {
    .lz-header {
        padding: 15px 0;
    }

    .lz-container {
        padding: 0 20px;
        justify-content: space-between;
    }

    .custom-logo-link img {
        height: 45px;
    }

    .lz-cta {
        display: none;
    }

    .lz-cta-mobile {
        display: flex;
        margin-left: 0;
        margin-right: 15px;
    }

    .lz-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        outline: none !important;
        margin-left: 0;
    }

    .lz-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 100px 30px 30px;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-left: 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .lz-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .lz-menu {
        flex-direction: column;
        gap: 0;
    }

    .lz-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .lz-menu li:last-child {
        border-bottom: none;
    }

    .lz-menu li a {
        font-size: 1.2rem;
        padding: 15px;
        display: block;
        color: var(--secondary-color);
        transition: color 0.3s ease, background-color 0.3s ease; /* Optimized */
    }

    .lz-menu li a:hover {
        color: var(--primary-color);
        background: var(--primary-light);
    }

    /* Mobile submenu */
    .lz-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        padding: 0;
        display: none;
    }

    .lz-menu .sub-menu.is-open {
        display: block;
    }

    .lz-menu .sub-menu li {
        border-bottom: none;
    }

    .lz-menu .sub-menu a {
        padding-left: 30px;
        font-size: 1.1rem;
    }

    /* Remove desktop hover effects on mobile */
    .lz-menu > li > a::after {
        display: none;
    }

    /* Style menu items with children */
    .menu-item-has-children > a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .menu-item-has-children > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .menu-item-has-children.is-open > a::after {
        transform: rotate(180deg);
    }

    /* Style CTA in menu if added through WordPress */
    .lz-menu .menu-cta a {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        border-radius: 999px;
        margin: 15px;
        text-align: center;
    }

    /* Add mobile CTA at bottom of menu */
    .lz-nav::after {
        content: '';
        display: block;
        margin-top: 30px;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--folder-inactive), transparent);
    }

    .lz-nav .mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        padding: 16px 32px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .lz-nav .mobile-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
    }

    .lz-nav .mobile-cta i {
        margin-right: 8px;
    }
}

/* Folder Navigation Styles - Desktop */
.folder-tabs {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    overflow-x: hidden;
}

.folder-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(224, 224, 224, 0.8), transparent);
    z-index: -1;
}

.folder-tab {
    padding: 18px 30px;
    background-color: var(--folder-inactive);
    color: var(--text-dark);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    margin-right: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    position: relative;
    border: 1px solid rgba(224, 224, 224, 0.5);
    border-bottom: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 1;
    outline: none !important;
}

.folder-tab.active {
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 -8px 20px rgba(255, 107, 53, 0.2);
}

.folder-tab:hover:not(.active) {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.folder-tab i {
    margin-right: 8px;
}

/* Folder Navigation Styles - Mobile */
@media (max-width: 768px) {
    .folder-tabs {
        overflow-x: auto;
        padding-bottom: 5px;
        margin-bottom: 30px;
        -webkit-overflow-scrolling: touch;
    }

    .folder-tab {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
        background: white;
        border: 1px solid var(--folder-inactive);
        border-radius: 999px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        margin-right: 12px;
        transform: none;
    }

    .folder-tab .tab-label {
        display: none;
    }

    .folder-tab.active {
        background: var(--primary-color);
        color: white;
        box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
        transform: none;
    }

    .folder-tab.active .tab-label {
        display: inline;
        margin-left: 8px;
        font-size: 0.95rem;
    }

    .folder-tab:hover:not(.active) {
        background-color: #f8f8f8;
        transform: none;
    }

    .folder-tab i {
        font-size: 1.1rem;
    }
}

/* Content Slides */
.slide-content {
    display: none;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-height: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Optimized */
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent, rgba(255, 107, 53, 0.05));
    border-radius: 0 0 0 100%;
    z-index: -1;
}

.slide-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent, rgba(74, 107, 255, 0.05));
    border-radius: 0 100% 0 0;
    z-index: -1;
}

.slide-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInScale 0.6s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.slide-content h1 {
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px; /* Final width */
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transform: scaleX(0); /* Initial state */
    transform-origin: left; /* Animate from left */
    animation: expandWidth 1s ease-out forwards;
}

@keyframes expandWidth {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.slide-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Dashboard Components */
.dashboard-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.dashboard-section h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px; /* Final width */
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transform: scaleX(0); /* Initial state */
    transform-origin: left; /* Animate from left */
    animation: expandWidth 1s ease-out forwards;
}

/* Executive Summary Layout */
.executive-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.executive-summary-content {
    padding-right: 20px;
}

.executive-summary-visual {
    position: relative;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-visualization {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.data-visualization::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
    z-index: 1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.data-visualization h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.data-visualization p {
    font-size: 1.1rem;
    max-width: 80%;
    margin: 0 auto;
    color: #555;
    position: relative;
    z-index: 2;
}

/* Pain Points Section */
.pain-points-section {
    margin-bottom: 50px;
    position: relative;
}

.pain-points-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.pain-points-header h2 {
    margin-bottom: 0;
    margin-right: 15px;
}

.pain-points-header .info-badge {
    background-color: var(--accent-light);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Timeline Design */
.pain-points-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.pain-points-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    animation: fadeIn 0.5s ease-out;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 4px solid white;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
}

.left {
    left: 0;
}

.left::after {
    right: -12px;
}

.right {
    left: 50%;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 30px;
    background: white;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(224, 224, 224, 0.3);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.timeline-content:hover h3::after {
    width: 100%;
}

.timeline-content p {
    color: #666;
    margin-bottom: 20px;
}

.timeline-content .solution-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), rgba(255, 107, 53, 0.2));
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timeline-content:hover .solution-tag {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.3));
    transform: translateY(-3px);
}

/* Metrics Section */
.metrics-swiper-container {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 50px; /* Space for pagination dots */
}

.swiper-slide {
    height: auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.metric-card {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(224, 224, 224, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(74, 107, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.metric-card:hover::before {
    opacity: 1;
}

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

.metric-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.metric-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.metric-card:hover .metric-icon {
    transform: scale(1.2);
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1;
}

.metric-description {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Pagination Controls */
.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-light);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Business Overview Section */
.business-overview {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(224, 224, 224, 0.3);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}

.business-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(74, 107, 255, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.business-overview:hover::before {
    opacity: 1;
}

.business-overview:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.business-overview h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.business-overview h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.business-overview:hover h3::after {
    width: 100%;
}

.business-overview ul {
    list-style-type: none;
    margin-left: 10px;
}

.business-overview li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.business-overview li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.business-overview li:hover {
    transform: translateX(5px);
}

.business-overview li:hover::before {
    transform: scale(1.2);
}

/* Chatbot Interface */
.chatbot-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(224, 224, 224, 0.3);
    animation: slideUp 0.8s ease-out;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.chatbot-container:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
    z-index: 1;
}

.chatbot-header img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.chatbot-header h3 {
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Chatbot Features */
.chatbot-features {
    margin-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(74, 107, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.5s ease;
    display: inline-block;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.feature-item:hover .feature-title::after {
    width: 80%;
}

.feature-description {
    font-size: 0.9rem;
    color: #666;
}

/* Automation Solutions */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    animation: fadeIn 0.8s ease-out;
}

.solution-card {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(224, 224, 224, 0.3);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.solution-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.solution-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
    z-index: 1;
}

.solution-card-header h3 {
    font-weight: 700;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.solution-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.solution-card-body p {
    margin-bottom: 25px;
    color: #555;
}

.solution-card-body ul {
    list-style-type: none;
    margin-top: 20px;
    flex-grow: 1;
}

.solution-card-body li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #444;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.solution-card-body li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
    transition: transform 0.3s ease;
}

.solution-card-body li:hover {
    transform: translateX(5px);
}

.solution-card-body li:hover::before {
    transform: scale(1.2);
}

/* Implementation Process */
.implementation-process {
    margin-top: 50px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 20%;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    transition: var(--transition);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.3s ease;
}

.process-step:hover .step-number::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    opacity: 0.2;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.process-step:hover .step-title::after {
    width: 80%;
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    max-width: 90%;
    margin: 0 auto;
}

/* Dynamic Content */
.dynamic-text {
    width: 100%;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 20px;
    }

    .folder-tabs {
        overflow-x: auto;
        padding-bottom: 5px;
        margin-bottom: 30px;
    }

    .folder-tab {
        padding: 12px 15px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .slide-content {
        padding: 25px;
        min-height: auto;
    }

    .pain-points-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pain-points-header .info-badge {
        margin-top: 10px;
    }

    .metrics-grid {
        display: none;
    }

    .metrics-swiper-container {
        display: block;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .chatbot-container {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 1.4rem;
    }
    
    .dashboard-section h2 {
        font-size: 1rem;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .business-overview {
        padding: 25px;
    }

    /* Mobile Timeline */
    .pain-points-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
    }

    .right {
        left: 0;
    }

    .executive-summary-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-steps::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 40px;
        transform: none;
    }

    .process-step {
        width: 100%;
        margin-bottom: 40px;
        padding-left: 60px;
        align-items: flex-start;
    }

    .step-number {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-title {
        text-align: left;
    }

    .step-description {
        text-align: left;
        margin: 0;
        max-width: 100%;
    }
}

@media (min-width: 769px) {
    .metrics-swiper-container {
        display: none;
    }
}

/* --------------------- Footer (Minimal) --------------------- */
.lz-footer {
    background: #f8f8f8;
    padding: 40px 0 20px;
    color: #333;
    font-size: 0.95rem;
}
.lz-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Logo */
.footer-logo .custom-logo-link img,
.footer-logo .lz-logo-text {
    height: 50px;
    object-fit: contain;
    display: block;
}

/* Copyright */
.footer-copy {
    flex: 1 1 auto;
    text-align: center;
}
.footer-copy p {
    margin: 0;
}

/* Links */
.footer-links {
    flex: 1 1 auto;
    text-align: right;
}
.footer-links a {
    margin-left: 24px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}
.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive */

/* Folder tab mobile version */
.folder-tab {
    background: white;
    border: 1px solid var(--folder-inactive);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-weight: 600;
    white-space: nowrap;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    outline: none !important;
}

.folder-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* CTA Buttons */
.lz-cta-mobile {
    display: none;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 999px;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 15px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.lz-cta-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease; /* Optimized */
    z-index: 0;
}

.lz-cta-mobile:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
    color: #fff;
}

.lz-cta-mobile:hover::before {
    left: 100%;
}

.lz-cta-mobile i {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    margin-right: 6px;
}

.lz-cta-mobile span {
    position: relative;
    z-index: 1;
}

/* Mobile Navigation */
@media (max-width: 900px) {
  /* keep burger flush */
  .lz-nav-toggle {
    margin-left: 0 !important;
  }

  /* show & size mobile CTA to fit “Book a Meeting” */
  .lz-cta-mobile {
    display: inline-flex !important;  /* re-enable the button */
    flex-shrink: 0 !important;         /* don’t let it collapse */
    margin: 0 8px 0 0 !important;
    padding: 6px 10px !important;      /* tighter padding */
    font-size: 0.8rem !important;      /* a hair smaller text */
    white-space: nowrap !important;    /* no wrapping */
  }
	  /* hide the mobile CTA as soon as the burger has .is-open */
  .lz-container:has(.lz-nav-toggle.is-open) .lz-cta-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.875rem;
    line-height: 1.3;
  }

  .container {
    padding: 15px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 20px;
  }

  .folder-tabs {
    overflow-x: auto;
    padding-bottom: 5px;
    margin-bottom: 30px;
  }

  .folder-tab {
    padding: 12px 15px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .slide-content {
    padding: 20px 16px;
    min-height: auto;
  }

  .slide-content h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .slide-content p,
  .dashboard-section p,
  .feature-description,
  .step-description,
  .business-overview p {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .dashboard-section h2,
  .pain-points-header h2,
  .chatbot-features h2,
  .implementation-process h2 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .metric-card h3,
  .feature-title,
  .solution-card-header h3,
  .timeline-content h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .metric-value {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .metrics-grid {
    display: none;
  }

  .metrics-swiper-container {
    display: block;
    padding-bottom: 30px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .chatbot-container {
    height: 500px;
  }

  .business-overview {
    padding: 20px;
  }

  /* Timeline layout on mobile */
  .pain-points-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pain-points-header .info-badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    margin-top: 10px;
  }

  .pain-points-timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .right {
    left: 0;
  }

  .timeline-content {
    padding: 20px;
  }

  .executive-summary-grid {
    grid-template-columns: 1fr;
    gap: 12px !important;
  }

  .executive-summary-visual {
    padding: 0 !important;
    min-height: unset !important;
  }

  /* Visualization block (gradient box) */
  .data-visualization {
    padding: 20px;
    min-height: unset !important;
    height: auto !important;
    border-radius: 16px;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .data-visualization h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.25px;
    text-transform: none;
    margin-bottom: 10px;
  }

  .data-visualization p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
  }

  /* Chatbot Capabilities cards */
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Implementation process steps */
  .process-steps {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-steps::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 40px;
    transform: none;
  }

  .process-step {
    width: 100%;
    margin-bottom: 32px;
    padding-left: 56px;
    align-items: flex-start;
  }

  .step-number {
    position: absolute;
    left: 0;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .step-title {
    font-size: 1rem;
    line-height: 1.2;
    text-align: left;
  }

  .step-description {
    text-align: left;
    margin: 0;
    max-width: 100%;
  }
}


/* --- Slide Navigation Links --- */

/* Main container for the navigation cards on a slide */
.slide-navigation-links {
  display: flex;
  flex-direction: row; /* Side-by-side on desktop */
  gap: 30px; /* Space between cards */
  margin-top: 40px; /* Space above the cards */
  margin-bottom: 20px; /* Space below the cards */
  padding: 20px 0; /* Some vertical padding */
  border-top: 1px solid var(--folder-inactive, #e0e0e0); /* Separator line */
}

/* Individual navigation card */
.navigation-card {
  font-family: 'Mulish', sans-serif;
  background-color: #ffffff; /* White background for the card */
  border-radius: var(--border-radius, 10px); /* Consistent border radius */
  box-shadow: var(--card-shadow, 0 15px 35px rgba(0, 0, 0, 0.1)); /* Consistent card shadow */
  padding: 25px;
  display: flex;
  align-items: center;
  flex: 1; /* Allow cards to grow and fill space equally */
  text-decoration: none;
  color: var(--text-dark, #333333);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 1px solid transparent; /* For hover/focus border */
}

.navigation-card:hover,
.navigation-card:focus {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: var(--primary-color, #ff6b35);
  border-color: var(--primary-light, rgba(255, 107, 53, 0.3));
  outline: none; /* Remove default focus outline if custom styling is sufficient */
}

/* Icon wrapper for styling the icon background/container */
.nav-card-icon-wrapper {
  background-color: var(--primary-light, rgba(255, 107, 53, 0.1));
  border-radius: 50%; /* Circular background for icon */
  padding: 18px;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevent shrinking */
  transition: background-color 0.3s ease;
}

.navigation-card:hover .nav-card-icon-wrapper,
.navigation-card:focus .nav-card-icon-wrapper {
  background-color: var(--primary-color, #ff6b35);
}

.nav-card-icon {
  font-size: 1.8rem; /* Icon size */
  color: var(--primary-color, #ff6b35);
  transition: color 0.3s ease;
}

.navigation-card:hover .nav-card-icon,
.navigation-card:focus .nav-card-icon {
  color: var(--text-light, #ffffff);
}

/* Content area for title and description */
.nav-card-content {
  flex-grow: 1; /* Allow content to take available space */
}

.nav-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color, #333333);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.navigation-card:hover .nav-card-title,
.navigation-card:focus .nav-card-title {
  color: var(--primary-color, #ff6b35);
}

.nav-card-description {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Arrow icon on the right */
.nav-card-arrow {
  margin-left: 20px;
  font-size: 1.5rem;
  color: var(--folder-inactive, #e0e0e0); /* Subtle arrow color */
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0; /* Prevent shrinking */
}

.navigation-card:hover .nav-card-arrow,
.navigation-card:focus .nav-card-arrow {
  color: var(--primary-color, #ff6b35);
  transform: translateX(5px);
}

/* --- Mobile Responsiveness for Navigation Cards --- */
@media (max-width: 768px) {
  .slide-navigation-links {
    flex-direction: column; /* Stack cards vertically on mobile */
    gap: 20px; /* Adjust gap for vertical layout */
    margin-top: 30px;
    padding: 15px 0;
  }

  .navigation-card {
    padding: 20px;
  }

  .nav-card-icon-wrapper {
    padding: 15px;
    margin-right: 15px;
  }

  .nav-card-icon {
    font-size: 1.6rem;
  }

  .nav-card-title {
    font-size: 1.1rem;
  }

  .nav-card-description {
    font-size: 0.9rem;
  }

  .nav-card-arrow {
    font-size: 1.3rem;
  }
}

