    /* RESET & BASE STYLES */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        text-transform: none;
        font-family: sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        color: #111111;
        background-color: #f8fefa;
        line-height: 1.5;
    }

    p {
        color: #7c7c7c !important;
        font-weight: 500 !important;
    }

    h1,
    h2,
    h3,
    p,
    ul,
    li,
    a,
    span,
    strong {
        font-family: sans-serif;

    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    .container {
        width: min(100%, 1440px);
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .vision-image {
        width: 600px;
        height: 200px;
        display: block;
    }

    /* Utility: show only on small screens when needed */
    .mobile-only {
        display: none;
    }

    .text-green {
        color: #087a1d;
    }

    .text-blue {
        color: #2563eb;
    }

    .text-sales {
        color: #087a1d;
    }

    .bg-light {
        background-color: #f8fafc;
    }

    /* BUTTONS */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 1px solid transparent;
    }

    .btn:hover {
        transform: scale(1.05);
    }

    .btn-green {
        background-color: #087a1d;
        color: #ffffff;
    }

    .btn-green:hover {
        background-color: #065f46;
    }

    .attention-cta {
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .attention-cta:hover {
        background-color: inherit;
    }

    .btn-outline-green {
        border-color: #087a1d;
        color: #087a1d;
        background: transparent;
    }

    .btn-outline-green:hover {
        background-color: #d1fae5;
    }

    .btn-whatsapp {
        background-color: #29a71a;
        color: #ffffff;
    }

    .btn-whatsapp:hover {
        background-color: #29a71a;
    }

    .btn-img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        display: inline-block;
        vertical-align: middle;
    }

    .btn-demo-green {
        border-color: #087a1d;
        color: #087a1d;
        background: transparent;
    }

    .btn-demo-green:hover {
        background-color: #d1fae5;
        color: #087a1d;
    }

    .btn-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .btn-outline-dark {
        border-color: #e2e8f0;
        color: #334155;
        background: #f8fefa;
    }

    .btn-outline-dark:hover {
        background-color: #f1f5f9;
    }

    /* NAVBAR */
    .navbar {
        position: sticky;
        top: 0;
        background: #f8fefa;
        z-index: 1000;
        border-bottom: 1px solid #f1f5f9;
        /* padding: 15px 0; */
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f8fefa;
        position: relative;
    }

    .logo {
        font-weight: 800;
        font-size: 20px;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Header logo styling */
    .header-logo-img,
    .header-logo img {
        width: 136px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    /* Footer logo styling */
    .footer-logo-img,
    .footer-logo img {
        width: 242px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .logo-text {
        display: none;
    }

    .logo-accent {
        color: #087a1d;
    }

    .nav-links {
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .nav-links a {
        font-size: 16px;
        font-weight: 700;
        color: #111111;
        display: flex;
        align-items: center;
        position: relative;
        transition: color 0.2s ease;
    }

    .nav-links a:hover {
        color: #087a1d;
    }

    .nav-links a.active,
    .nav-links .dropdown.active>.dropdown-toggle {
        color: #087a1d;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: #087a1d;
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 0.28s ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after,
    .nav-links a.active::after,
    .nav-links .dropdown.active>.dropdown-toggle::after {
        transform: scaleX(1);
    }

    [dir="rtl"] .nav-links a::after {
        transform-origin: right center;
    }

    .nav-actions {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .lang-switch-btn {
        width: 136px;
        height: 42px;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4px;
        border: 1px solid #cbd5e1;
        border-radius: 999px;
        background: #f0f8eb;
        color: #62738e;
        box-shadow: inset 0 1px 2px rgba(30, 55, 90, 0.05);
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .lang-switch-btn:hover {
        border-color: #b5c3d5;
    }

    .lang-option {
        min-width: 61px;
        height: 34px;
        padding: 0 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
        transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .lang-option.active {
        background: #f8fefa;
        color: #172033;
        box-shadow: 0 4px 12px rgba(50, 70, 100, 0.12);
    }

    .lang-option:first-child {
        order: 0;
    }

    .lang-option:last-child {
        order: 1;
        font-size: 16px;
        font-weight: 600;
    }

    .lang-dot {
        width: 8px;
        height: 8px;
        display: inline-block;
        border-radius: 50%;
        background: #10b981;
    }

    .lang-option:not(.active) .lang-dot {
        display: none;
    }

    /* Mobile nav toggle (hamburger) */
    .nav-toggle {
        display: none;
        background: transparent;
        border: none;
        width: 40px;
        height: 40px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        padding: 6px;
    }

    .nav-toggle .hamburger,
    .nav-toggle .hamburger::before,
    .nav-toggle .hamburger::after {
        display: block;
        width: 22px;
        height: 2px;
        background: #0f172a;
        border-radius: 2px;
        position: relative;
    }

    .nav-toggle .hamburger::before,
    .nav-toggle .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
    }

    .nav-toggle .hamburger::before {
        top: -7px;
    }

    .nav-toggle .hamburger::after {
        top: 7px;
    }

    /* when nav open, rotate hamburger into X */
    .nav-container.open .nav-toggle .hamburger {
        background: transparent;
    }

    .nav-container.open .nav-toggle .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-container.open .nav-toggle .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }

    /* HERO SECTION */
    .hero-banner {
        position: relative;
        background: #f0f8eb !important;
        width: 100%;
        max-width: none;
        margin: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-banner-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
    }

    .hero-banner .banner-container {
        display: none;
    }

    .mobile-banner-image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        max-width: 500px;
        justify-self: center;
    }

    .hero-overlay {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        padding: 30px 0px;
        grid-column: 1;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .hero-content {
        max-width: 850px;
        width: 100%;
    }

    .hero-overlay.container {
        margin: 0;
        padding: 30px 40px;
    }

    /* ==========================================
   DROPDOWN & SUBMENU STYLES
            background-color: transparent !important;

    /* Dropdown Container */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-toggle {
        font-size: 14px;
        font-weight: 500;
        color: #475569;
        cursor: pointer;
        padding: 10px 0;
        display: inline-block;
        text-align: center;
    }

    .dropdown-toggle:hover {
        color: #087a1d;
    }

    /* Main Dropdown Menu */
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f8fefa;
        min-width: 200px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        border: 1px solid #e2e8f0;
        padding: 8px 0;
        z-index: 1010;
    }

    /* Open dropdowns on hover for desktop */
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Show dropdown when .open is present (toggled by JS) or when focused for accessibility */
    .nav-links .dropdown.open>.dropdown-menu,
    .dropdown:focus-within .dropdown-menu,
    .dropdown-toggle:focus+.dropdown-menu {
        display: block;
    }

    /* Caret image sizing in header dropdown toggles */
    .dropdown-caret {
        width: 14px;
        height: 14px;
        margin-left: 4px;
        display: inline-block;
        vertical-align: middle;
        object-fit: contain;
    }

    @media (max-width: 900px) {
        .dropdown-caret {
            width: 12px;
            height: 12px;
            margin-left: 6px;
        }

        .nav-links a:hover {
            margin: 0 0;
        }

        /* Disable hover dropdowns on mobile; use .open class for tap-to-toggle instead */
        .dropdown:hover .dropdown-menu {
            display: none !important;
        }

    }

    /* Dropdown Links */
    .dropdown-menu a {
        display: block;
        padding: 10px 16px;
        font-size: 13px;
        color: #334155;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .dropdown-menu a:hover {
        background-color: #f0fdf4;
        color: #087a1d;
    }

    .dropdown-menu a.active {
        background-color: #f0fdf4;
        color: #087a1d;
    }

    .nav-links .dropdown-menu a.active {
        background-color: #f0fdf4;
        color: #087a1d;
    }

    /* Submenu Container */
    .dropdown-submenu {
        position: relative;
    }

    .submenu-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    /* Submenu Flyout Menu */
    .submenu-menu {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        background-color: #f8fefa;
        min-width: 200px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        border: 1px solid #e2e8f0;
        padding: 8px 0;
        z-index: 1020;
    }

    .dropdown-submenu:hover .submenu-menu {
        display: block;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 1.15;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .text-red {
        color: #eb2525
    }

    .hero-content p {
        font-size: 16px;
        color: #7c7c7c;
        font-weight: 500;
        line-height: 1.7 !important;
        margin: 10px 0 10px 0;
    }

    .hero-benefits {
        list-style: none;
        padding: 0;
        margin: 15px 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-benefits li {
        font-size: 16px;
        color: #111111;
        font-weight: 600;
        padding-left: 28px;
        position: relative;
    }

    .hero-benefits li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #087a1d;
        font-weight: bold;
        font-size: 18px;
    }

    .hero-btns {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }

    .connect-demo-actions {
        margin-left: 10px;
    }

    .trust-badges {
        display: flex;
        gap: 40px;
        align-items: center;
        margin-top: 10px;
    }

    .badge-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: #475569;
        font-weight: 600;
        position: relative;
    }

    .badge-item+.badge-item::before {
        content: "";
        position: absolute;
        left: -15px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 35px;
        background: #dfe7ee;
    }

    .badge-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #f8fafc;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
        overflow: hidden;
        flex-shrink: 0;
    }

    .meta-icon {
        width: 28px;
        height: 28px;
        background: #edf6ff;
    }

    .meta-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        display: block;
    }

    .people-icon {
        width: 30px;
        height: 30px;
        background: #ecfdf5;
    }

    .people-icon img {
        width: 30px;
        height: 36px;
        object-fit: contain;
        display: block;
    }

    .badge-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .badge-text strong {
        font-size: 16px;
        font-weight: 700;
        color: #087a1d;
    }

    .badge-text span {
        font-size: 12px;
        color: #111111;
        font-weight: 600;
        margin: 4px 0 0 0;
    }

    .green-text {
        color: #28a719;
    }

    .badge-strong {
        font-size: 13px;
        line-height: 1.2;
    }

    .badge-small {
        font-size: 12px;
        line-height: 1.3;
        color: #475569;
    }

    /* MOCK PHONE FRAME */
    .phone-frame {
        width: 320px;
        margin: 0 auto;
        border: 8px solid #0f172a;
        border-radius: 36px;
        background: #f8fafc;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .phone-header {
        background: #075e54;
        color: white;
        padding: 12px;
        font-size: 12px;
        font-weight: bold;
    }

    .chat-bubble {
        background: #f8fefa;
        padding: 10px;
        margin: 10px;
        border-radius: 8px;
        font-size: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* SECTION HEADERS */
    .section-title {
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        margin: 0px 0;
    }

    /* BANNER SECTION */
    .banner-container {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* CHALLENGE VS SOLUTION */
    .comparison-section {
        padding: 0px 0;
        background: #f8fefa;
    }

    .comparison-wrapper {
        display: flex;
        align-items: stretch;
        gap: 18px;
        margin: 0 auto;
        padding: 0 0px;
    }

    .labels-column {
        width: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* gap: 18px; */
    }

    .label-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 650;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding: 18px 12px;
        min-height: 120px;
        border: 2px solid;
    }

    .challenge-label {
        font-size: 15px;
        color: #ef4444;
        border-color: #fff5f5;
        background-color: #fff5f5;
        gap: 4px;
    }

    .solution-label {
        font-size: 15px;
        color: #087a1d;
        border-color: #f0fdf4;
        background-color: #f0fdf4;
        gap: 4px;
    }

    .arrow-icon {
        font-size: 18px;
        line-height: 1;
    }

    .badge-arrow {
        width: 13px;
        height: 13px;
        object-fit: contain;
        display: block;
        margin-top: 0px;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(220px, 1fr));
        gap: 10px;
        flex: 1;
    }

    .vertical-card {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .card-combined {
        position: relative;
        /* for absolute-positioned arrow */
        display: flex;
        flex-direction: column;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    }

    /* Arrow between challenge & solution */
    .card-arrow {
        position: absolute;
        left: 44%;
        /* align near the left icon */
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        z-index: 20;
        pointer-events: none;
        /* decorative */
    }

    /* Keep the downward arrow visible on mobile so the challenge/solution comparison stays clear. */
    .card-row {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 24px 22px;
        min-height: 120px;
        background: #f8fefa;
    }

    .challenge-row {
        /* background: #fff5f5; */
        /* remove full-width border; use centered decorative divider instead */
        border-bottom: none;
    }

    /* Decorative centered divider between challenge and solution inside the card */
    .card-combined::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        /* centered vertically between the two rows */
        width: 60%;
        height: 1px;
        background: #e2e8f0;
        z-index: 8;
        pointer-events: none;
    }

    /* Make sure the rows have a transparent background so the divider shows clearly */
    .card-row {
        background: transparent;
    }

    @media (max-width: 700px) {
        .card-combined::after {
            width: 40%;
        }
    }


    .card-row strong {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 6px;
    }

    .solution-row strong {
        color: #087a1d;
        font-size: 18px;
    }

    .card-row p {
        font-size: 12px;
        color: #000000;
        line-height: 1.5;
    }

    .comparison-section .card-row .icon-box {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .comparison-section .card-row .icon-box img {
        width: 58px;
        height: 58px;
        object-fit: contain;
        display: block;
        padding: 0;
    }

    .arrow-divider {
        text-align: center;
        font-size: 20px;
        color: #087a1d;
        line-height: 1;
        padding: 8px 0;
        background: #f8fefa;
        border-bottom: 1px solid #f8d7d7;
    }

    .comp-grid {
        display: grid;
        grid-template-columns: 120px 1fr 1fr 1fr;
        gap: 15px;
        align-items: center;
    }

    .comp-card {
        background: #f8fefa;
        border: 1px solid #e2e8f0;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .comp-card.challenge {
        background: #fff5f5;
        border-color: #fed7d7;
    }

    .comp-card.solution {
        background: #f0fdf4;
        border-color: #d1fae5;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        flex-shrink: 0;
    }

    /* Images inside icon boxes should fit the container */
    .icon-box img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        display: block;
        padding: 2px;
    }

    .bg-red {
        background-color: #db9696;
    }

    .bg-orange {
        background-color: #e9b793;
    }

    .bg-purple {
        background-color: #d1b2ee;
    }

    .bg-green {
        background-color: #c6f0c2;
    }

    .provider-icon-orange {
        background-color: #e9b793;
    }

    /* FEATURES GRID */
    .features-section {
        padding: 10px 6px;
    }

    .features-grid {
        background: #f8fefa;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .feature-card {
        background: #f8fefa;
        border: 1px solid #e2e8f0;
        padding: 30px 24px;
        border-radius: 8px;
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
        transform-origin: center center;
        will-change: transform;
        background-clip: padding-box;
    }

    .feature-card:hover,
    .feature-card:focus-within,
    .feature-card:active {
        transform: scale(1.03);
        border-color: #087a1d;
        box-shadow: 0 10px 30px rgba(8, 122, 29, 0.12);
        z-index: 5;
    }

    .features-section .feature-card .icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 18px;
        background: transparent;
        color: #087a1d;
        flex-shrink: 0;
        line-height: 1;
        transition: box-shadow 180ms ease;
        transform-origin: center center;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
    }

    .features-section .feature-card .icon-box img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        display: block;
        padding: 0;
    }

    /* Make the section title focusable and indicate it is interactive */
    .features-section .section-title {
        cursor: pointer;
    }

    /* Removed icon-only scaling — full card now scales on hover/focus/active */

    /* Removed global scaling triggered by the section title per request */

    .feature-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 8px;
        margin-top: 0;
    }

    .feature-card p {
        font-size: 13px;
        color: #111111;
        line-height: 1.6;
        margin: 0;
    }

    /* STEPS SECTION */

    /* Step icons: replace emoji with image from assets/icons/your_data.png */
    .step-icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: transparent;
        /* leave background to .step-circle */
        margin: 0 auto;
        flex-shrink: 0;
    }

    .step-icon-img {
        width: 62px;
        height: 62px;
        object-fit: contain;
        display: block;
    }



    /* Testimonials: place arrows at both ends and ensure cards fit */
    .testimonials-row {
        position: relative;
        /* needed for absolute-positioned arrows */
        display: block;
        /* stack children; viewport will handle layout */
    }

    /* Arrow buttons positioned outside the flow at the row edges */
    .testimonial-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #f8fefa;
        border: 1px solid rgba(2, 6, 23, 0.08);
        width: 56px;
        height: 56px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(2, 6, 23, 0.08);
        z-index: 30;
    }

    .testimonial-arrow.left {
        left: 8px;
    }

    .testimonial-arrow.right {
        right: 8px;
    }

    /* image inside arrow buttons */
    .testimonial-arrow-img {
        width: 18px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .testimonial-arrow:focus-visible {
        outline: 3px solid rgba(8, 122, 29, 0.15);
        outline-offset: 2px;
    }

    /* Give the viewport horizontal padding so first/last cards don't hide under arrows */
    .testimonials-row .testimonials-viewport {
        padding: 0 76px;
        /* space for arrows + breathing room */
        box-sizing: border-box;
        overflow: hidden;
    }

    .testimonials-grid {
        display: flex;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        align-items: stretch;
        /* allow horizontal scroll inside viewport (the track itself should be scrollable) */
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    /* Slightly reduce card width so 3 fit comfortably with arrows visible */
    .testimonials-grid .testimonial-card {
        flex: 0 0 calc(33.333% - 32px);
        box-sizing: border-box;
        min-height: 220px;
        /* increase height as requested */
        padding: 18px;
    }

    @media (max-width: 900px) {
        .testimonial-arrow {
            width: 48px;
            height: 48px;
            font-size: 18px;
        }

        .testimonials-row .testimonials-viewport {
            padding: 0 56px;
        }

        .testimonials-grid .testimonial-card {
            flex: 0 0 calc(100% - 32px);
            min-height: 260px;
        }
    }

    /* end testimonials adjustments */
    .testimonials-row {
        /* ensure arrows don't push the track off-screen */
        padding-left: 6px;
        padding-right: 6px;
    }

    .testimonials-row .testimonials-viewport {
        /* keep track slightly narrower so arrows have visual breathing room */
        padding-left: 56px;
        padding-right: 56px;
        overflow: hidden;
    }

    .testimonials-grid {
        display: flex;
        gap: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        align-items: stretch;
    }

    .testimonials-grid .testimonial-card {
        /* slightly reduce card width so three fit with arrows visible */
        flex: 0 0 calc(33.333% - 20px);
        box-sizing: border-box;
    }

    @media (max-width: 900px) {
        .testimonials-grid .testimonial-card {
            /* single card visible on mobile but leave padding for arrows */
            flex: 0 0 calc(100% - 20px);
            min-height: 260px;
        }

        /* Hide the arrow buttons on mobile to keep the UI clean */
        .testimonial-arrow {
            display: none !important;
        }

        /* Reduce viewport side padding when arrows are hidden */
        .testimonials-row .testimonials-viewport {
            padding: 0 16px;
        }


    }

    /* keep existing STEPS SECTION comment and styles */
    .steps-section {
        text-align: center;
        padding: 8px 0 40px 0;
        background: #eef9ee;
    }

    .steps-grid {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
        position: relative;
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        min-width: 160px;
    }

    .step-circle {
        position: relative;
        width: 72px;
        height: 72px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8fefa;
        box-shadow: 0 4px 12px rgb(68 76 70 / 40%);
        z-index: 5;
        /* keep circles above connector line */
    }

    .step-icon {
        font-size: 34px;
        line-height: 1;
        z-index: 1;
    }

    .step-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        width: 22px;
        height: 22px;
        background: #087a1d;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(8, 122, 29, 0.25);
        /* border: 3px solid white; */
    }

    .step-item h3 {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        margin: 0;
    }

    .step-item p {
        font-size: 13px;
        color: #64748b;
        margin-top: -10px;
    }

    .step-connector {
        position: relative;
        width: 140px;
        flex: 0 0 140px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-connector::before {
        content: "";
        position: absolute;
        left: -50px;
        right: -50px;
        height: 2px;
        border-top: 2px dashed #9aa7b3;
        top: 43px;
        transform: translateY(-50%);
        z-index: 1;
    }

    .connector-arrow {
        position: relative;
        width: 22px;
        height: 12px;
        z-index: 3;
        display: block;
        object-fit: contain;
    }

    /* small image at the end of the connector line */
    .step-connector .connector-end {
        position: absolute;
        right: -64px;
        /* align to the end of the dashed line */
        top: 35px;
        /* sit slightly above the dotted line */
        width: 13px;
        height: auto;
        z-index: 5;
        pointer-events: none;
    }

    /* Add arrow head at the end of the last connector */
    .steps-grid .step-connector:last-of-type::after {
        content: "";
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background-image: url('../icons/arrow_right.png');
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 4;
        pointer-events: none;
    }

    @media (max-width: 700px) {
        .steps-grid {
            flex-direction: column;
            gap: 20px;
        }

        .step-circle {
            width: 56px;
            height: 56px;
        }

        .step-icon-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            display: block;

        }

        .step-icon {
            font-size: 26px;
        }

        .step-badge {
            width: 18px;
            height: 18px;
            font-size: 11px;
            top: -3px;
            right: -3px;
        }

        .step-connector {
            display: none;
        }
    }

    /* INDUSTRY TABS */

    .tab-buttons {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 0 24px;
    }

    .tab-btn {
        padding: 8px 16px;
        border-radius: 6px;
        border: 1px solid #f8fefa;
        background: #ffffff;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .tab-btn:hover,
    .tab-btn:focus-visible {
        transform: scale(1.05);
        border-color: #087a1d;
        outline: none;
    }

    .tab-btn.active {
        background: #ffffff;
        color: #087a1d;
        border-color: #087a1d;
    }

    .industry-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        background: #ffffff;
        border-radius: 8px;

    }

    .industry-header {
        text-align: left;
        margin-bottom: 4px;
        text-align: left;
    }



    .home-page #solutions .industry-header {
        max-width: none;
        margin: 0 0 4px;
        text-align: left;
    }

    .industry-copy h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .industry-heading {
        font-size: 28px;
        line-height: 1.2;
        /* margin-bottom: 20px; */
    }

    .industry-copy p {
        color: #64748b;
        font-size: 14px;
        margin-bottom: 18px;
        max-width: 460px;
    }

    .industry-copy ul {
        display: grid;
        gap: 9px;
        margin-bottom: 22px;
        font-size: 13px;
        font-weight: 500;
    }

    .industry-copy li::before {
        content: '✓';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        margin-right: 8px;
        border-radius: 50%;
        background: #087a1d;
        color: #ffffff;
        font-size: 11px;
        font-weight: 800;
    }

    .industry-visual {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .industry-visual img {
        display: block;
        width: auto;
        height: auto;
    }

    /* PROVIDER / INTEGRATION BADGES */
    .provider-section {
        padding: 0;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        overflow: hidden;
        background-color: #f8fefa;
    }

    .provider-section .container {
        padding: 0;
    }

    .provider-grid {
        display: grid;
        grid-template-columns: 1.7fr repeat(4, 1fr);
        min-height: 145px;
        text-align: center;
    }

    .provider-title,
    .provider-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .provider-title {
        align-items: flex-start;
        text-align: left;
        padding-left: 28px;
    }

    .provider-title h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .provider-item {
        border-left: 1px solid #e2e8f0;
    }

    .provider-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        color: #ffffff;
        font-size: 21px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 10px;
        overflow: hidden;
        background-color: transparent;
        /* image will provide visual */
    }

    .provider-icon-img {
        width: 40px;
        height: 40px;
        display: block;
        object-fit: contain;
    }

    .provider-icon-green {
        background: #087a1d;
    }

    .provider-icon-blue {
        background: #1d70da;
    }

    .provider-item h4 {
        font-size: 14px;
        margin: 0 0 3px;
    }

    .provider-item p {
        font-size: 12px;
        color: #111111;
        max-width: 130px;
        line-height: 1.35;
    }

    /* TESTIMONIALS */
    /* .testimonials-section {
        padding: 60px 0;
    } */

    .testimonials-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .testimonials-heading .section-title {
        text-align: left;
    }

    .testimonial-controls {
        display: flex;
        gap: 8px;
        flex-shrink: 0;
    }

    .testimonial-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid #f8fefa;
        border-radius: 50%;
        background: #f8fefa;
        color: #087a1d;
        cursor: pointer;
        font-size: 20px;
    }

    /* .testimonial-arrow:hover,
    .testimonial-arrow:focus-visible {
        transform: scale(1.05);
        background: #ecfdf5;
        outline: none;
    } */

    .testimonials-viewport {
        overflow: hidden;
    }

    .testimonials-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* push user-info to bottom */
        flex: 0 0 calc((100% - 40px) / 3);
        min-width: 0;
        scroll-snap-align: start;
        background: #f8fefa;
        border: 1px solid #e2e8f0;
        padding: 28px 24px 20px 24px;
        /* extra top padding for quote */
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        min-height: 220px;
        /* ensure consistent height */
    }

    .testimonial-card p {
        font-size: 16px;
        font-weight: 700;
        color: #475569;
        margin: 0 0 12px 0;
        position: relative;
        padding-top: 28px;
        /* space for quote icon */
    }

    /* Quote icon placed above the testimonial text */
    .testimonial-card p::before {
        content: "";
        position: absolute;
        top: 6px;
        left: 0;
        width: 20px;
        height: 20px;
        background-image: url('../icons/open.png');
        background-repeat: no-repeat;
        background-size: contain;
        opacity: 0.95;
    }

    .user-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
        /* small gap before user info */
        /* ensure it stays at the bottom when content is short */
        margin-bottom: 0;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #cbd5e1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .user-details h5 {
        font-size: 15px;
    }

    .user-details span {
        font-size: 12px;
        color: #64748b;
    }

    /* Social icons in footer */

    /* Container layout */
    .footer-socials {
        display: flex;
        gap: 10px;
        padding: 2px;
        align-items: center;
    }

    /* Base styles for all 4 social icons */
    .footer-socials .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        /* Circular shape */
        color: #ffffff;
        /* White icon color */
        border: 2px solid #ffffff;
        /* White inner circular border */
        text-decoration: none;
        font-size: 22px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    /* Individual Brand Colors & Outer Matching Rings */
    .footer-socials .social-link[aria-label="Facebook"] {
        background-color: #0f172a;
        box-shadow: 0 0 0 2px #0f172a;
    }

    .footer-socials .social-link[aria-label="LinkedIn"] {
        background-color: #0f172a;
        box-shadow: 0 0 0 2px #0f172a;
    }

    .footer-socials .social-link[aria-label="Twitter"] {
        background-color: #0f172a;
        box-shadow: 0 0 0 2px #0f172a;
    }

    .footer-socials .social-link[aria-label="Instagram"] {
        background-color: #0f172a;
        box-shadow: 0 0 0 2px #0f172a;
    }

    .footer-socials .social-link:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }

    /* Styling for the large left WhatsApp icon */
    .cta-wa-icon {
        font-size: 87px;
        color: #ffff;
        background-color: #29a71a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Styling for the small icon inside the button */
    .btn-wa-icon {
        font-size: 18px;
        /* Size inside button */
        margin-right: 8px;
        /* Space between icon and text */
    }

    @media (max-width: 700px) {
        .footer-grid {
            grid-template-columns: 1fr;
            /* stack columns */
            gap: 20px;
        }

        .footer-socials {
            justify-content: flex-start;
            gap: 14px;
        }
    }

    /* ==========================================
   CTA BANNER (MATCHING THE IMAGE DESIGN)
   ========================================== */
    .cta-banner {
        position: relative;
        background: linear-gradient(100deg, #027a48 0%, #064e3b 35%, #083344 70%, #031b4e 100%);
        border-radius: 16px;
        padding: 60px 44px;
        color: #ffffff;
        overflow: hidden;
        /* box-shadow: 0 10px 25px -5px rgba(2, 122, 72, 0.25); */
        /* margin: 40px auto; */
    }

    /* Subtle dot pattern backgrounds (Left & Right accents) */
    .cta-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 90px;
        height: 100%;
        background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
        background-size: 12px 12px;
        pointer-events: none;
    }

    .cta-banner::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 90px;
        height: 100%;
        background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
        background-size: 12px 12px;
        pointer-events: none;
    }

    .cta-banner-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
        gap: 40px;
    }

    /* Left Grouping */
    .cta-left-group {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    /* Large 3D WhatsApp Icon Container */
    .cta-wa-icon {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
        filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3));
        transition: transform 0.3s ease;
    }

    .cta-wa-icon svg {
        width: 100%;
        height: 100%;
    }

    .cta-wa-icon:hover {
        transform: scale(1.05);
    }

    /* Typography */
    .cta-heading-block h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.25;
        color: #ffffff;
        margin: 0;
        letter-spacing: -0.2px;
    }

    .cta-heading-block p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.85);
        margin-top: 26px;
        font-weight: 400;
    }

    /* Buttons Container */
    .cta-buttons {
        /* display: flex; */
        display: grid;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
    }

    /* Request Demo Button (Solid White) */
    .btn-cta-light {
        background-color: #f8fefa;
        color: #059669;
        font-weight: 700;
        font-size: 14px;
        padding: 14px 28px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        transition: all 0.2s ease;
        border: none;
        text-decoration: none;
    }

    .btn-cta-light:hover {
        background-color: #f8fafc;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-arrow {
        font-size: 16px;
        transition: transform 0.2s ease;
    }

    .btn-cta-light:hover .btn-arrow {
        transform: translateX(3px);
    }

    /* Talk to Sales Button (Outlined with WhatsApp Icon) */
    .btn-cta-outline {
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        background-color: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        padding: 13px 26px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        backdrop-filter: blur(4px);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .btn-cta-outline:hover {
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.7);
        transform: translateY(-2px);
    }

    .btn-wa-icon {
        width: 18px;
        height: 18px;
        fill: #ffffff;
    }

    /* Responsive Styles for Mobile/Tablet */
    @media (max-width: 992px) {
        .cta-banner-content {
            flex-direction: column;
            text-align: center;
        }

        .cta-left-group {
            flex-direction: column;
            gap: 16px;
        }

        .cta-buttons {
            flex-direction: column;
            width: 100%;
        }

        .btn-cta-light,
        .btn-cta-outline {
            width: 100%;
            justify-content: center;
        }
    }

    /* FOOTER */
    .footer {
        background: #0f172a;
        color: #ffffff;
        padding: 60px 0 20px 0;
        font-size: 13px;
    }

    .footer-brand-link {
        color: #ffffff;
        margin-bottom: 10px;
        display: inline-block;
    }

    .footer-brand-copy {
        font-size: 12px;
        margin-top: -4px;
        max-width: 250px;
        margin-bottom: 36px;
        color: #ffffff;
        line-height: 1.6;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-col h4 {
        color: white;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a:hover {
        color: white;
    }

    .footer-bottom {
        border-top: 1px solid #1e293b;
        padding-top: 20px;
        text-align: center;
        font-size: 12px;
    }

    /* ==========================================
    SCROLL ANIMATIONS
    ========================================== */

    @keyframes slideUpIn {
        from {
            opacity: 0;
            transform: translateY(60px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .animate-on-scroll.animated {
        animation: slideUpIn 0.8s ease-out forwards;
    }

    /* Stagger animation for multiple items */
    .feature-card.animate-on-scroll {
        animation: slideUpIn 0.8s ease-out forwards;
    }

    .feature-card.animate-on-scroll:nth-child(1) {
        animation-delay: 0.1s;
    }

    .feature-card.animate-on-scroll:nth-child(2) {
        animation-delay: 0.2s;
    }

    .feature-card.animate-on-scroll:nth-child(3) {
        animation-delay: 0.3s;
    }

    .feature-card.animate-on-scroll:nth-child(4) {
        animation-delay: 0.4s;
    }

    .feature-card.animate-on-scroll:nth-child(5) {
        animation-delay: 0.5s;
    }

    .feature-card.animate-on-scroll:nth-child(6) {
        animation-delay: 0.6s;
    }

    /* Stagger for step cards */
    .step-card.animate-on-scroll {
        animation: slideUpIn 0.8s ease-out forwards;
    }

    .step-card.animate-on-scroll:nth-child(1) {
        animation-delay: 0.1s;
    }

    .step-card.animate-on-scroll:nth-child(2) {
        animation-delay: 0.2s;
    }

    .step-card.animate-on-scroll:nth-child(3) {
        animation-delay: 0.3s;
    }

    /* Stagger for comparison cards */
    .comp-card.animate-on-scroll {
        animation: slideUpIn 0.8s ease-out forwards;
    }

    .comp-card.animate-on-scroll:nth-child(1) {
        animation-delay: 0.1s;
    }

    .comp-card.animate-on-scroll:nth-child(2) {
        animation-delay: 0.2s;
    }

    .comp-card.animate-on-scroll:nth-child(3) {
        animation-delay: 0.3s;
    }

    .comp-card.animate-on-scroll:nth-child(4) {
        animation-delay: 0.4s;
    }

    /* Stagger for testimonial cards */
    .testimonial-card.animate-on-scroll {
        animation: slideUpIn 0.8s ease-out forwards;
    }

    .testimonial-card.animate-on-scroll:nth-child(1) {
        animation-delay: 0.1s;
    }

    .testimonial-card.animate-on-scroll:nth-child(2) {
        animation-delay: 0.2s;
    }

    .testimonial-card.animate-on-scroll:nth-child(3) {
        animation-delay: 0.3s;
    }

    /* Testimonials layout and controls */
    .testimonials-section .testimonials-heading {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0 24px 0;
    }

    .testimonials-section .testimonials-heading .section-title {
        margin: 0;
        text-align: center;
        font-size: 26px;
        font-weight: 700;
    }

    /* position controls to left and right over the same horizontal line as the heading */
    .testimonial-controls {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 12px;
        pointer-events: none;
        /* allow buttons to individually enable pointer events */
    }

    .testimonial-controls .testimonial-arrow {
        pointer-events: auto;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f8fefa;
        color: #087a1d;
        /* green arrow color */
        border: 2px solid rgba(8, 122, 29, 0.08);
        box-shadow: 0 2px 8px rgba(8, 122, 29, 0.06);
        font-size: 20px;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .testimonial-controls .testimonial-arrow:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(8, 122, 29, 0.12);
    }

    .testimonials-viewport {
        margin-top: 18px;
        overflow: hidden;
        /* we control scrolling on the inner track */
    }

    /* Use a horizontal scroll track so only 3 cards are visible at a time on desktop */
    .testimonials-grid {
        display: flex;
        gap: 18px;
        align-items: stretch;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        /* space for scrollbar if visible */
    }

    /* Each card takes one third of the viewport (three visible) */
    .testimonials-grid .testimonial-card {
        flex: 0 0 calc(33.3333% - 12px);
        scroll-snap-align: start;
        background: #f8fefa;
        border: 1px solid #e6eef4;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
    }

    .testimonial-card p {
        font-size: 15px;
        color: #0f172a;
        margin-bottom: 12px;
        margin-right: 22px;
    }

    .testimonial-card .user-info {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .testimonial-card .user-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
    }

    /* hide scrollbar on WebKit */
    .testimonials-grid::-webkit-scrollbar {
        height: 8px;
    }

    .testimonials-grid::-webkit-scrollbar-thumb {
        background: rgba(2, 6, 23, 0.08);
        border-radius: 8px;
    }

    /* Responsive: show 1 card on small screens and make it scrollable, center heading, keep arrows on sides */
    @media (max-width: 900px) {
        .testimonials-grid {
            gap: 12px;
        }

        .testimonials-grid .testimonial-card {
            flex: 0 0 100%;
        }

        .testimonial-controls {
            padding: 0 6px;
        }

        .testimonial-controls .testimonial-arrow {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        .testimonials-section .testimonials-heading {
            padding-bottom: 8px;
        }
    }

    /* Stagger for provider items */
    .provider-item.animate-on-scroll {
        animation: slideUpIn 0.8s ease-out forwards;
    }

    .provider-item.animate-on-scroll:nth-child(1) {
        animation-delay: 0.1s;
    }

    .provider-item.animate-on-scroll:nth-child(2) {
        animation-delay: 0.2s;
    }

    .provider-item.animate-on-scroll:nth-child(3) {
        animation-delay: 0.3s;
    }

    .provider-item.animate-on-scroll:nth-child(4) {
        animation-delay: 0.4s;
    }

    @media (min-width: 500px) and (max-width: 900px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr 1fr 1fr !important;
            gap: 15px !important;
        }


        .btn-cta-light,
        .btn-cta-outline {
            width: 60% !important;
        }

        .hero-btns .btn {
            width: 60% !important;
        }

        .hero-content p {
            margin-right: 212px !important;
        }
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 900px) {

        .hero-grid,
        .comp-grid,
        .features-grid,
        .steps-grid,
        .provider-grid,
        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 10px;

        }



        .industry-content {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .footer-grid>div:first-child {
            grid-column: 1 / -1;
        }

        .footer-col {
            text-align: left;
        }

        .footer-col h4 {
            margin-bottom: 12px;
        }

        .footer-col ul li {
            margin-bottom: 6px;
        }

        .provider-section {
            margin: 0 10px;
        }

        /* Hide desktop nav items and show mobile menu */
        .nav-links,
        .nav-actions {
            display: none;
        }

        .nav-toggle {
            display: inline-flex;
        }

        /* Mobile menu layout when toggled */
        .nav-container.open .nav-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            text-align: center;
            background: #f8fefa;
            padding: 16px 20px 20px 20px;
            box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
            border-bottom: 1px solid #eef2f7;
            z-index: 1200;
        }

        .nav-container.open .nav-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: absolute;
            top: calc(100% + 1px + (var(--nav-links-height, 0px)));
            left: 0;
            right: 0;
            background: transparent;
            padding: 0 20px 20px 20px;
            z-index: 1199;
        }

        .nav-links a {
            padding: 12px 0;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            display: block;
            color: #111111;
            width: 100%;
        }

        .nav-links a:hover {
            color: #087a1d;
        }

        /* Dropdowns become accordion-like on mobile */
        .nav-links .dropdown .dropdown-menu,
        .nav-links .dropdown .submenu-menu {
            position: static;
            display: none;
            box-shadow: none;
            border: none;
            background: transparent;
            padding: 0;
            margin: 0;
            text-align: center;
            width: 100%;
            top: auto;
            left: auto;
        }

        .nav-links .dropdown-menu a,
        .nav-links .submenu-menu a {
            padding: 10px 0;
            display: block;
            color: #111111;
            font-size: 14px;
            font-weight: 600;
            width: 100%;
            transition: color 0.2s ease;
            text-align: center;
        }

        .nav-links .dropdown-menu a:hover,
        .nav-links .submenu-menu a:hover {
            color: #087a1d;
            background-color: transparent;
            text-align: unset;
        }

        .nav-links .submenu-toggle {
            justify-content: center;
            display: block !important;
        }

        .nav-links .dropdown.open>.dropdown-menu {
            display: block !important;
            margin-top: 4px;
        }

        .nav-links .dropdown-submenu.open>.submenu-menu {
            display: block !important;
            margin-top: 4px;
        }

        .cta-flex {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .comp-grid {
            gap: 10px;
        }

        /* Hero adjustments for medium screens */
        .hero-banner {
            min-height: 420px;
            padding-top: 40px;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .hero-overlay {
            padding: 20px;
            grid-column: 1;
        }

        .mobile-banner-image {
            max-width: 350px;
        }

        .hero-content h1 {
            font-size: 32px;
        }

        .hero-content p {
            margin-right: 0;
        }

        .hero-btns {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-btns .btn {
            width: 100%;
        }

        .nav-links {
            gap: 12px;
            flex-wrap: wrap;
        }

        .header-logo-img,
        .header-logo img {
            margin: 6px 0 2px 10px;
            width: 96px;
        }

        .footer-logo-img,
        .footer-logo img {
            width: 180px;
        }

        .logo-text {
            display: inline-block;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .cards-grid {
            grid-template-columns: 1fr;
        }

        /* Industry tabs: provide a mobile-only <select> and hide desktop buttons on small screens */
        .tab-buttons .tab-btn {
            display: inline-flex;
        }

        .mobile-only {
            display: none;
        }

        /* On mobile, hide the left labels column and stack challenge+solution vertically
           Show icon centered above text for each card for improved readability */
        .labels-column {
            display: none;
        }

        .card-combined {
            width: 100%;
        }

        .comparison-section {
            padding: 34px 0 6px 0;
        }

        .card-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
            padding: 16px 14px;
            min-height: auto;
            /* allow rows to size to content */
        }

        .card-row .icon-box {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 6px;
        }

        .card-row .icon-box img {
            width: 60%;
            height: 60%;
        }

        .challenge-row {
            border-bottom: none;
            padding-bottom: 20px;
        }

        .solution-row {
            padding-top: 20px;
        }

        .feature-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
            padding: 18px 12px;
            min-height: auto;
        }

        .feature-card h3 {
            margin-bottom: 14px;
        }

        .card-combined::after {
            display: none;
        }

        .card-arrow {
            top: 50%;
            left: 48%;
        }

        .card-row strong {
            font-size: 16px;
        }

        .card-row p {
            font-size: 13px;
            margin: 0;
            color: #334155;
        }

        .testimonials-viewport {
            overflow-x: auto;
        }

        /* show the mobile select and hide desktop tab buttons on small screens */
        @media (max-width: 900px) {
            .mobile-only {
                display: block;
                width: 100%;
                margin-top: 12px;
                padding: 10px 12px;
                border-radius: 8px;
                border: 1px solid #e6eef4;
                background: #f8fefa;
                font-size: 16px;
                color: #0f172a;
            }

            .provider-title h3 {
                text-align: center;
            }

            .tab-buttons .tab-btn {
                display: none;
            }
        }

        /* Steps: stack vertically on smaller screens and hide connectors */
        .steps-grid {
            flex-direction: row;
            align-items: center;
            gap: 50px;
        }

        .step-icon-img {
            width: 48px;
            height: 48px;
        }

        .step-connector {
            display: none;
        }

        .step-item {
            min-width: 30%;
            max-width: 380px;
            width: 100%;
        }

        .step-circle {
            width: 62px;
            height: 62px;
        }

        .step-badge {
            top: -9px;
            right: -8px;
            width: 26px;
            height: 26px;
            font-size: 13px;
        }
    }

    /* Small screens */
    @media (max-width: 600px) {
        .hero-banner {
            min-height: 360px;
            padding: 6px 0;
            background: #f5f8f1;
            position: relative;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .hero-banner .banner-container {
            display: none;
        }

        .mobile-banner-image {
            display: block;
            width: 100%;
            max-width: 300px !important;
            margin: 0 auto;
            object-fit: contain;
        }

        /* Add a semi-opaque blue background behind hero text on mobile for readability */
        /* .hero-overlay {
            border-radius: 10px;
            background: linear-gradient(259deg, rgb(175 175 175 / 92%), rgb(205 205 205 / 72%));
            color: #ffffff;
            z-index: 2;
        } */

        .hero-content h1 {
            font-size: 26px !important;
            color: #111111;
        }

        .hero-content h2 {
            font-size: 20px !important;
            color: #111111;
        }

        /* color: #111111; */
    }


    .hero-content p {
        color: #111111;
        margin-right: 0;
    }

    .hero-content {
        max-width: 100%;
    }

    /* Make buttons visible on dark background */
    .hero-btns .btn {
        color: #111111;
    }

    .hero-btns .btn.btn-whatsapp {
        background-color: #29a71a;
        /* teal-like for contrast */
        border-color: transparent;
    }

    .hero-btns .btn.btn-demo-green,
    .hero-btns .btn.btn-outline-green {
        /* border-color: rgba(255, 255, 255, 0.28); */
        color: #111111;
        /* background: transparent; */
    }

    .hero-btns .btn.btn-demo-green:hover,
    .hero-btns .btn.btn-outline-green:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-container {
        padding: 0px 0;
    }

    .logo {
        font-size: 18px;
    }

    .btn {
        font-size: 15px;
        padding: 12px 16px;
    }

    .badge-item {
        gap: 8px;
    }


    /* Accessibility: focus styles and keyboard friendly interactions */

    /* Enquiry modal (full-screen) styles - professional blue theme */
    .enquiry-modal {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(2, 6, 23, 0.6);
        z-index: 1400;
        padding: 24px;
    }

    .enquiry-modal.open {
        display: flex;
    }

    .enquiry-modal-panel {
        width: 100%;
        max-width: 880px;
        background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
        border-radius: 12px;
        box-shadow: 0 18px 50px rgba(2, 6, 23, 0.25);
        overflow: auto;
        max-height: 96vh;
        position: relative;
        padding: 0;
        /* header will provide padding */
        border: 1px solid rgba(11, 99, 204, 0.12);
    }

    .enquiry-close {
        position: absolute;
        right: 12px;
        top: 12px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        width: 36px;
        height: 36px;
        background: transparent;
        font-size: 20px;
        cursor: pointer;
        color: #ffffff;
    }

    .enquiry-modal-header {
        background: linear-gradient(90deg, #287e03, #1f5d02);
        color: #fff;
        padding: 20px 24px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .enquiry-modal-header h2 {
        margin: 0 0 6px 0;
        font-size: 20px;
    }

    .enquiry-modal-header p {
        margin: 0 0 0 0;
        color: rgba(255, 250, 250, 0.9) !important;
        font-size: 14px;
    }

    .enquiry-modal-body {
        padding: 20px 22px 28px 22px;
    }

    /* Form controls inside modal */
    .enquiry-modal-body input[type="text"],
    .enquiry-modal-body input[type="email"],
    .enquiry-modal-body input[type="url"],
    .enquiry-modal-body textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(11, 99, 204, 0.14);
        border-radius: 8px;
        font-size: 15px;
        background: #f8fefa;
        transition: box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .enquiry-modal-body textarea {
        min-height: 120px;
    }

    .enquiry-modal-body input:focus,
    .enquiry-modal-body textarea:focus {
        outline: none;
        border-color: rgba(11, 99, 204, 0.45);
        box-shadow: 0 6px 20px rgba(11, 99, 204, 0.12);
    }

    .enquiry-modal .form-row {
        display: flex;
        gap: 12px;
        margin-bottom: 12px;
    }

    .enquiry-modal .form-row .field {
        flex: 1;
    }

    .enquiry-modal .form-actions {
        display: flex;
        gap: 12px;
        justify-content: flex-end;
        margin-top: 12px;
    }

    /* Buttons: primary uses blue inside modal */
    .enquiry-modal .btn.btn-green {
        background: #287e03;
        border-color: #1f5d02;
        color: #fff;
    }

    .enquiry-modal .btn.btn-green:hover {
        background: #1f5d02;
    }

    .enquiry-modal .btn.btn-outline-dark {
        border-color: rgba(2, 6, 23, 0.08);
        color: #287e03;
        background: transparent;
    }

    .enquiry-modal .error-list {
        background: #fff5f5;
        border: 1px solid #fecaca;
        color: #7f1d1d;
        padding: 10px;
        border-radius: 8px;
        margin-top: 8px;
    }

    .enquiry-modal .note {
        color: #287e03;
        font-weight: 600;
        /* margin-top: 8px; */
        font-size: 18px;
    }

    @media (max-width: 720px) {
        .enquiry-modal-panel {
            width: 100%;
            padding: 0;
            border-radius: 10px;
        }

        .enquiry-modal {
            padding: 12px;
        }

        .enquiry-modal .form-row {
            flex-direction: column;
        }

        .enquiry-modal .form-actions {
            flex-direction: column-reverse;
            align-items: stretch;
        }
    }

    a:focus-visible,
    button:focus-visible,
    .input:focus-visible,
    .btn:focus-visible,
    .tab-btn:focus-visible {
        outline: 3px solid rgba(37, 99, 235, 0.9);
        outline-offset: 3px;
        border-radius: 6px;
    }

    a:focus,
    button:focus {
        outline: none;
    }

    .dropdown:focus-within .dropdown-menu,
    .dropdown-toggle:focus+.dropdown-menu {
        display: block;
    }

    /* Skip link */
    .skip-link {
        position: absolute;
        left: -999px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .skip-link:focus,
    .skip-link:active {
        left: 16px;
        top: 16px;
        width: auto;
        height: auto;
        padding: 8px 12px;
        background: #087a1d;
        color: #fff;
        z-index: 9999;
        border-radius: 4px;
    }

    /* Make interactive elements keyboard-focusable if not naturally focusable */
    .dropdown-toggle[role="button"] {
        cursor: pointer;
    }

    /* reduce motion for users who prefer reduced motion */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }
    }

    [dir="rtl"] .hero-content,
    [dir="rtl"] .industry-copy,
    [dir="rtl"] .provider-grid,
    [dir="rtl"] .footer,
    [dir="rtl"] .nav-links,
    [dir="rtl"] .nav-actions {
        direction: rtl;
    }

    /* Enquiry page styles moved from enquiry.php */
    .enquiry-hero {
        padding: 28px 0;
        background: linear-gradient(180deg, #f8fafc, #ffffff);
        text-align: center;
    }

    /* make the enquiry take a large 'sheet' shape (A-series aspect ratio) while remaining responsive */
    /* A-series paper ratio is sqrt(2) ~ 1.414; portrait aspect-ratio width/height = 594/841 ~ 0.706 */
    .enquiry-container {
        max-width: 1200px;
        width: min(1100px, 95vw);
        aspect-ratio: 594 / 841;
        /* keeps sheet-like proportions */
        margin: 20px auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .enquiry-card {
        width: 100%;
        height: 100%;
        background: #f8fefa;
        border: 1px solid #e6eef4;
        padding: 28px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
        overflow: auto;
        box-sizing: border-box;
        position: relative;
        transition: filter 0.3s ease, transform 0.3s ease;
    }

    .enquiry-card.success-state {
        filter: blur(2px);
        transform: scale(0.99);
    }

    .enquiry-title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .enquiry-sub {
        color: #475569;
        margin-bottom: 18px;
    }

    .form-row {
        display: flex;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-row .field {
        flex: 1;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    textarea {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #d6e1e9;
        border-radius: 8px;
        font-size: 15px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    input.is-invalid,
    textarea.is-invalid {
        border-color: #dc2626 !important;
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
        background: #fff8f8;
    }

    textarea {
        min-height: 160px;
        resize: vertical;
    }

    .form-actions {
        display: flex;
        gap: 12px;
        justify-content: flex-end;
        margin-top: 12px;
    }

    .form-actions .btn {
        padding: 10px 18px;
    }

    .note {
        font-size: 13px;
        color: #64748b;
    }

    .enquiry-success-box {
        position: absolute;
        inset: 50% auto auto 50%;
        transform: translate(-50%, -50%) scale(0.9);
        min-height: 120px;
        width: min(80%, 420px);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(236, 253, 245, 0.96);
        color: #166534;
        border: 1px solid #bbf7d0;
        border-radius: 14px;
        font-size: 20px;
        font-weight: 700;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(22, 101, 52, 0.15);
        animation: successPop 0.45s ease forwards;
        backdrop-filter: blur(2px);
        z-index: 2;
    }

    @keyframes successPop {
        0% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.7);
        }

        100% {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    .error-list {
        background: #fff5f5;
        border: 1px solid #fecaca;
        color: #7f1d1d;
        padding: 10px 12px;
        border-radius: 8px;
        margin-bottom: 12px;
        text-align: left;
    }

    .error-list ul {
        margin: 0;
        padding-left: 18px;
    }

    .error-list li {
        margin: 4px 0;
    }

    /* snackbar / toast */
    .snackbar {
        position: fixed;
        left: 50%;
        bottom: 28px;
        transform: translateX(-50%) translateY(20px);
        background: #287e03;
        color: #fff;
        padding: 12px 18px;
        border-radius: 8px;
        box-shadow: 0 8px 28px rgba(8, 122, 29, 0.24);
        opacity: 0;
        pointer-events: none;
        transition: transform 260ms cubic-bezier(.2, .9, .3, 1), opacity 260ms ease;
        z-index: 1200;
        font-weight: 600;
    }

    .snackbar.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    @media (max-width: 900px) {
        .enquiry-container {
            width: calc(100% - 24px);
            aspect-ratio: auto;
            max-width: none;
            margin: 12px;
        }

        .enquiry-card {
            padding: 18px;
        }

        textarea {
            min-height: 140px;
        }

        .snackbar {
            bottom: 18px;
        }
    }

    @media (max-width: 420px) {
        .form-row {
            flex-direction: column;
        }

        .form-actions {
            flex-direction: column-reverse;
            align-items: stretch;
        }
    }

    /* Utilities and classes moved from landing_page.php inline styles */
    .banner-bg {
        display: none;
    }

    .underline {
        text-decoration: underline;
    }

    /* icon circle small padding and full-round */
    .icon-circle {
        border-radius: 50%;
        padding: 4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* specific background color utilities used inline on page */
    .bg-color-fb6e6d {
        background: #fb6e6d;
    }

    .bg-color-29a71a {
        background: #29a71a;
    }

    .bg-color-f99c33 {
        background: #f99c33;
    }

    .bg-color-048b30 {
        background: #048b30;
    }

    .bg-color-078327 {
        background: #078327;
    }

    .bg-color-7e5ec5 {
        background: #7e5ec5;
    }

    .bg-color-1c8adb {
        background: #1c8adb;
    }

    .bg-color-098f3d {
        background: #098f3d;
    }

    .bg-color-8464c9 {
        background: #8464c9;
    }

    .bg-color-fb901c {
        background: #fb901c;
    }

    .bg-color-1995a5 {
        background: #1995a5;
    }

    .bg-color-edb112 {
        background: #edb112;
    }

    /* provider icon special */
    .provider-icon-orange {
        background-color: #056cf3;
    }

    /* avatar utilities */
    .user-avatar.avatar-1 {
        background-image: url('../avatar/Cr-01.png');
        background-size: cover;
        background-position: center;
    }

    .user-avatar.avatar-2 {
        background-image: url('../avatar/Cr-02.png');
        background-size: cover;
        background-position: center;
    }

    .user-avatar.avatar-3 {
        background-image: url('../avatar/Cr-03.png');
        background-size: cover;
        background-position: center;
    }

    /* enquiry message placeholders */
    #enquiry-error,
    #enquiry-success {
        display: none;
        margin-top: 12px;
    }

    /* small helper to visually hide elements (use where needed) */
    .hidden {
        display: none !important;
    }

    /* ========================================== 
    TABLET PORTRAIT & LANDSCAPE VIEW (768px - 1280px)
    ========================================== */

    /* Tablet Portrait: 768px to 1024px */
    @media (min-width: 901px) and (max-width: 1024px) {
        .container {
            padding: 0 20px;
        }

        .section-title {
            font-size: 24px;
            margin: 30px 0;
        }

        .hero-content h1 {
            font-size: 32px;
        }

        .hero-content p {
            font-size: 14px;
        }

        .hero-btns {
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .hero-btns .btn {
            width: 50%;
            justify-content: center;
        }

        .hero-banner {
            min-height: 520px;
            padding-top: 20px;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .mobile-banner-image {
            max-width: 400px;
            justify-self: center;
            align-self: center;
        }

        .step-connector::before {
            content: "";
            position: absolute;
            left: -50px;
            right: -50px;
            height: 2px;
            border-top: 2px dashed #9aa7b3;
            top: 24px;
            transform: translateY(-50%);
            z-index: 1;
        }

        .testimonials-row .testimonials-viewport {
            padding-left: 70px;
            padding-right: 64px;
            overflow: hidden;
        }

        .step-connector .connector-end {
            position: absolute;
            right: -64px;
            top: 16px;
            width: 13px;
            height: auto;
            z-index: 5;
            pointer-events: none;
        }

        /* Feature cards: 2 columns on tablet */
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .feature-card {
            flex-direction: column;
            text-align: center;
            padding: 24px 16px;
            gap: 12px;
        }

        .feature-card:hover,
        .feature-card:focus-within,
        .feature-card:active {
            transform: scale(1.02);
        }

        /* Comparison cards: 2 columns */
        .cards-grid {
            grid-template-columns: repeat(2, minmax(200px, 1fr));
            gap: 12px;
            text-align: center;
        }

        .step-icon-img {
            height: 40px;
            width: 40px;
        }

        .step-badge {

            position: absolute;
            top: -11px;
            right: -6px;
            width: 22px;
            height: 22px;
            background: #087a1d;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(8, 122, 29, 0.25);
        }

        .card-row {
            padding: 18px 16px;
            gap: 12px;
        }

        /* Steps: 2 columns on tablet */
        .steps-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        /* Footer: keep 2 columns, adjust spacing */
        .footer-grid {
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 24px;
        }

        .footer-grid>div:first-child {
            grid-column: 1 / -1;
        }

        /* Testimonials: 2 visible on tablet */
        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        /* Provider section: 2 columns */
        .provider-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .provider-title {
            grid-column: 1 / -1;
        }

        /* CTA banner: stack on tablet */
        .cta-banner-content {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }

        .cta-buttons {
            width: 100%;
            flex-direction: column;
        }

        .cta-buttons .btn {
            width: 50%;
        }

        /* Button sizing */
        .btn {
            padding: 10px 18px;
            font-size: 13px;
        }

        /* Modal adjustments */
        .enquiry-modal-panel {
            width: 90%;
            max-width: 500px;
        }
    }

    /* Tablet Landscape: 1025px to 1280px */
    @media (min-width: 1025px) and (max-width: 1280px) {
        .container {
            padding: 0 30px;
        }

        .section-title {
            font-size: 26px;
            margin: 35px 0;
        }

        .hero-content h1 {
            font-size: 36px;
        }

        .hero-content p {
            font-size: 15px;
        }

        .hero-btns {
            flex-direction: row;
            gap: 16px;
            margin-top: 24px;
        }

        .hero-banner {
            min-height: 600px;
            padding-top: 20px;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .mobile-banner-image {
            max-width: 550px;
            justify-self: center;
            align-self: center;
        }

        /* Feature cards: 3 columns (keep desktop) */
        .features-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .feature-card {
            flex-direction: row;
            padding: 24px 18px;
            gap: 16px;
        }

        /* Comparison cards: 3 columns */
        .cards-grid {
            grid-template-columns: repeat(3, minmax(220px, 1fr));
            gap: 12px;
        }

        .card-row {
            padding: 22px 18px;
            gap: 14px;
        }

        /* Steps: 3 columns */
        .steps-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        /* Footer: 2 columns with brand full width */
        .footer-grid {
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 28px;
        }

        .footer-grid>div:first-child {
            grid-column: 1 / -1;
        }

        /* Testimonials: 3 visible */
        .testimonials-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        /* Provider section: 4 columns (keep desktop) */
        .provider-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .provider-title {
            grid-column: 1 / -1;
        }

        /* CTA banner: horizontal layout */
        .cta-banner-content {
            flex-direction: row;
            gap: 24px;
            justify-content: space-between;
        }

        .cta-buttons {
            flex-direction: row;
            width: auto;
        }

        /* Button sizing */
        .btn {
            padding: 12px 20px;
            font-size: 14px;
        }

        /* Modal adjustments */
        .enquiry-modal-panel {
            width: 85%;
            max-width: 600px;
        }
    }

    /* Tablet spacing adjustments for both orientations */
    @media (min-width: 901px) and (max-width: 1280px) {
        .comparison-section {
            padding: 40px 0;
        }

        .step-icon-img {
            height: 41px;
            width: 41px;
        }

        .step-badge {
            top: -10px;
            right: -9px;
        }

        .step-connector::before {
            top: 25px;
        }

        .comparison-wrapper {
            gap: 16px;
            padding: 0;
        }

        .feature-card h3 {
            font-size: 16px;
        }

        .feature-card p {
            font-size: 12px;
        }

        .label-badge {
            min-height: 100px;
            padding: 14px 10px;
        }

        /* Reduce nav padding slightly on tablet */
        .nav-links {
            gap: 40px;
        }

        .nav-links a {
            font-size: 15px;
        }

        /* Adjust hero banner height */
        .hero-banner {
            min-height: 500px;
            padding-top: 20px;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .mobile-banner-image {
            max-width: 450px;
            justify-self: center;
        }

        /* Testimonial card sizing */
        .testimonial-card {
            padding: 20px;
        }

        .testimonial-card-text {
            font-size: 12px;
            line-height: 1.5;
        }

        .testimonial-author-name {
            font-size: 13px;
        }

        .testimonial-author-title {
            font-size: 11px;
        }

        /* Provider items */
        .provider-item {
            text-align: center;
        }

        .provider-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 12px;
        }

        .provider-item h3 {
            font-size: 15px;
            margin-bottom: 8px;
        }

        .provider-item p {
            font-size: 12px;
        }

        /* Step items */
        .step-item h3 {
            font-size: 16px;
        }

        .step-item p {
            font-size: 12px;
        }

        .step-circle {
            width: 48px;
            height: 48px;
            font-size: 20px;
        }

        /* Show step connectors in tablet mode */
        .step-connector {
            display: flex !important;
        }

        /* Industry section */
        .industry-copy h3 {
            font-size: 22px;
        }

        .industry-copy p {
            font-size: 13px;
        }

        .industry-benefits li {
            font-size: 12px;
        }
    }

    /* Tablet view: keep desktop industry tabs and show two testimonials. */
    @media (min-width: 800px) and (max-width: 900px) {
        .tab-buttons .tab-btn {
            display: inline-flex;
        }

        .tab-buttons .mobile-only {
            display: none;
        }

        .testimonials-grid .testimonial-card,
        .testimonial-card.animate-on-scroll:nth-child(1) {
            flex: 0 0 calc(50% - 6px);
        }

        .card-arrow {
            left: 49%;
        }

        .comparison-wrapper {
            max-width: 500px !important;
        }


        .footer-logo-img,
        .footer-logo img {
            width: 220px;
        }
    }

    @media (max-width: 630px) {
        .steps-grid {
            flex-direction: column !important;
        }
    }

    @media (max-width: 800px) {
        .hero-content {
            max-width: 100%;
            background-color: #f5f8f1;
        }

        .hero-banner .banner-container {
            display: none;
            padding: 0;
        }

        .hero-banner {
            padding: 0;
        }

        .mobile-banner-image {
            display: block;
            width: 120%;
            max-width: 420px;
            margin: 28px 0 0 -24px;
            /* border-radius: 14px; */
            object-fit: cover;
            /* box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12); */
        }

        .comparison-wrapper {
            max-width: 450px !important;
        }
    }

    @media(max-width: 1270px) {
        .step-connector .connector-end {
            top: 18px;
        }
    }


    /*=======================================================
FAQ Section & Gallery Wrapper CSS
=======================================================*/


    /* Section Title */
    .faq-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .faq-header h1 {
        color: #287e03;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 1px;
    }


    /* FAQ List Box */
    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background-color: #ffffff;
    }

    .faq-item {
        border: 1px solid #dcdcdc;
        border-radius: 8px;
        overflow: hidden;
        background-color: #f8fefa;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .faq-item:last-child {
        border-bottom: 1px solid #dcdcdc;
    }

    /* Accordion Header / Button */
    .faq-question {
        width: 100%;
        padding: 16px 20px;
        background-color: #ffffff;
        border: none;
        text-align: left;
        font-size: 15px;
        font-weight: 700;
        color: #111111;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f0f4f8;
    }

    /* Chevron Icon */
    .faq-icon {
        width: 12px;
        height: 12px;
        border-right: 2px solid #555555;
        border-bottom: 2px solid #555555;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-left: 10px;
        flex-shrink: 0;
    }

    /* Active / Open State Styling */
    .faq-item.active .faq-question {
        background-color: #ffffff;
        color: #111111;
    }

    .faq-item.active .faq-icon {
        transform: rotate(-135deg);
        border-color: #111111;
    }

    /* Accordion Body */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
        background-color: #ffffff;
    }

    .faq-answer-content {
        background-color: #ffffff;
        padding: 18px 20px;
        font-size: 14px;
        line-height: 1.6;
        color: #111111;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
        /* High max-height to ensure expansion */
        transition: max-height 0.4s ease-in-out;
    }

    .title-underline {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0px;
    }

    .animated-line {
        width: 60px;
        height: 4px;
        background-color: #287e03;
        /* Track background color */
        border-radius: 10px;
        margin: 20px 0;
        position: relative;
        overflow: hidden;
    }

    /* The inner accent line moving inside the container */
    .animated-line::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background-color: #f8fefa;
        /* Primary green theme color */
        border-radius: 10px;
        animation: slideLine 2s ease-in-out infinite;
    }

    .static-title-underline {
        justify-content: flex-start;
    }

    .static-title-underline .animated-line::before {
        display: none;
        animation: none;
    }

    /* Home page underline layout */
    .home-page .title-underline {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
    }

    .home-page .title-underline .animated-line {
        flex: 0 0 60px;
        margin: 8px 0 16px;
    }

    .home-page .title-underline.static-title-underline {
        justify-content: flex-start !important;
    }

    .home-page .title-underline.static-title-underline .animated-line {
        margin: 8px 0 20px 0;
    }

    /* About page underline layout stays independent from the home page. */
    .about-us-page .title-underline {
        display: flex;
        justify-content: flex-start !important;
        align-items: center;
        width: 100%;
        margin: 8px 0 12px !important;
    }

    .about-us-page .title-underline .animated-line {
        flex: 0 0 60px;
        margin: 0;
    }

    .about-us-page .static-title-underline .animated-line::before {
        display: none;
        animation: none;
    }

    /* Smooth continuous side-to-side rotation animation */
    @keyframes slideLine {
        0% {
            left: -50%;
        }

        50% {
            left: 100%;
        }

        100% {
            left: -50%;
        }
    }


    .cc360-split-section {
        padding: 60px 0;
        background-color: #f8fefa;
        font-family: sans-serif;
        color: #1e293b;
    }

    .cc360-split-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    @media (min-width: 768px) {
        .cc360-split-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* Left Side Content Stack */
    .cc360-content-left {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .cc360-content-left h2 {
        font-size: 2.2rem;
        font-weight: 700;
        /* margin: 0 0 -10px 0; */
        color: #0f172a;
        line-height: 1.25;
    }

    /* Feature List Column */
    .cc360-cards-column {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin: 0 0 16px 0;
        list-style: none;
    }

    .cc360-card-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 16px;
        border-radius: 12px;
        border: 1px solid #287e03;
        background: #ffffff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cc360-card-item:hover {
        transform: translateX(6px);
        box-shadow: 0 8px 16px rgba(16, 185, 129, 0.12);
    }

    .cc360-check-bullet {
        color: #287e03;
        font-weight: 800;
        font-size: 1.1rem;
        line-height: 1;
    }

    .cc360-card-label {
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
    }

    /* Typography Text Stack */
    .cc360-subheading-bold {
        font-size: 1.25rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 12px;
        margin-top: 20px;
        line-height: 1.1;
    }

    .cc360-description {
        font-size: 1rem;
        color: #475569;
        margin: 0 0 12px 0;
        line-height: 1.6;
    }

    .cc360-highlight {
        font-size: 1.05rem;
        color: #334155;
        margin: 0;
        line-height: 1.6;
    }

    .cc360-highlight strong {
        color: #0f172a;
        font-weight: 700;
    }

    /* Right Side Image Block */
    .cc360-media-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cc360-media-right img {
        width: auto;
        height: auto;
        object-fit: cover;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .cc360-media-right {
            width: min(100%, 360px);
            margin: 0 auto;
        }

        .cc360-media-right img {
            width: 100%;
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        .cc360-content-left h2 {
            font-size: 1.8rem;
        }

        .cc360-subheading-bold {
            font-size: 1.15rem;
        }
    }

    @media (max-width: 480px) {
        .cc360-split-section {
            padding: 32px 0;
        }

        .cc360-content-left h2 {
            font-size: 1.5rem;
        }
    }

    .business-struggle {
        padding: 60px 0;
        font-family: sans-serif;
        color: #1e293b;
    }

    .business-struggle-bg-light {
        background-color: #f8fafc;
    }

    .business-struggle-container {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0;
    }

    .business-struggle-reverse {
        flex-direction: row-reverse;
    }

    .business-struggle-content {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 40px;
    }

    .business-struggle-badge {
        display: inline-block;
        background-color: #00a884;
        color: #ffffff;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .business-struggle-content h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0px;
        color: #0f172a;
    }

    .business-struggle-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .business-struggle-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .business-struggle-list li>span {
        flex: 0 0 18px;
        color: #0f172a;
        font-size: 24px;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        margin-top: -5px;
    }

    .business-struggle-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        font-size: 0.8rem;
        font-weight: bold;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .business-struggle-icon-red {
        background-color: #fee2e2;
        color: #ef4444;
    }

    .business-struggle-icon-green {
        background-color: #dcfce7;
        color: #16a34a;
    }

    /* Image Container & Hover Zoom Animation */
    .business-struggle-img-wrapper {
        flex: 1 1 0;
        width: 300px;
        height: 250px;
        overflow: hidden;
        border-radius: 16px;
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    }

    .business-struggle-img-wrapper-primary {
        flex: 1 1 0;
        width: 300px;
        height: 250px;
    }

    .business-struggle-img {
        width: auto;
        height: auto;
        object-fit: cover;
        margin-left: auto;
        display: block;
        transition: transform 0.4s ease-in-out;
    }

    .business-struggle-img-wrapper-secondary {
        flex: 1 1 0;
        width: 300px;
        height: 250px;
    }

    .business-struggle-img-secondary {
        width: auto;
        height: auto;
        object-fit: cover;
        display: block;
        margin: 0 0 auto;
    }

    .business-struggle-img-wrapper:hover .business-struggle-img {
        transform: scale(1.08);
    }

    /* Responsive Design */
    @media (max-width: 768px) {

        .business-struggle {
            padding: 40px 20px;
        }

        .business-struggle-container,
        .business-struggle-reverse {
            flex-direction: column;
            gap: 30px;
        }

        .business-struggle-img-wrapper {
            flex: 0 0 auto;
            width: min(100%, 360px);
            height: auto;
            margin: 0 auto;
        }

        .business-struggle-content {
            padding: 0;
        }

        .business-struggle-img-wrapper-secondary {
            flex: 0 0 auto;
            width: min(100%, 360px);
            height: auto;
        }

        .business-struggle-img,
        .business-struggle-img-secondary {
            width: 100%;
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        .business-struggle-content h2 {
            font-size: 1.6rem;
        }
    }



    .grow-whatsapp {
        padding: 45px 20px;
        background-color: #f5f5f5;
        font-family: sans-serif;
    }

    .grow-whatsapp-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .grow-whatsapp-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
    }

    .grow-whatsapp-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .grow-whatsapp-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 30px 24px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .grow-whatsapp-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        background-color: #D0E1D4;
    }

    .grow-whatsapp-icon {
        width: 86px;
        height: 86px;
        background-color: #e6f7f2;
        border-radius: 50%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px auto;
    }

    .grow-whatsapp-icon img {
        width: 65px;
        height: 65px;
        object-fit: contain;
        display: block;
    }

    .grow-whatsapp-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 12px 0;
    }

    .grow-whatsapp-card p {
        font-size: 0.95rem;
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }

    /* Responsive Layout */
    @media (max-width: 992px) {
        .grow-whatsapp-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .grow-whatsapp-grid {
            grid-template-columns: 1fr;
        }

        .grow-whatsapp-header h2 {
            font-size: 1.75rem;
        }
    }



    /* Container & Section Styling */
    .turn-conversations {
        padding: 60px 0;
        background-color: #f3f8f7;
        font-family: sans-serif;
        color: #0f172a;
        overflow: hidden;
    }

    .turn-conversations .turn-conversations-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .turn-conversations .turn-conversations-title {
        font-size: 1.85rem;
        font-weight: 700;
        color: #0b192c;
        margin: 0 0 0px 0;
        text-align: left;
    }

    .turn-conversations .turn-conversations-subtitle {
        font-size: 0.95rem;
        color: #475569;
        margin-bottom: 12px;
        text-align: left;
    }

    .turn-conversations .turn-conversations-grid {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    /* Left Side: Image (1.05 Zoom on Hover) */
    .turn-conversations .turn-conversations-visual {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .turn-conversations .turn-conversations-img-wrapper {
        width: 100%;
        max-width: 580px;
        border-radius: 16px;
        overflow: hidden;
        /* box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.15); */
    }

    .turn-conversations .turn-conversations-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .turn-conversations .turn-conversations-img-wrapper:hover .turn-conversations-img {
        transform: scale(1.05);
    }

    /* Right Side: Cards List */
    .turn-conversations .turn-conversations-cards-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 10px;
    }

    .turn-conversations .turn-conversations-card {
        display: flex;
        align-items: center;
        gap: 16px;
        background: #ffffff;
        padding: 6px 8px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        cursor: pointer;
        perspective: 1000px;
        /* Perspective for 3D rotation effects */
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .turn-conversations .turn-conversations-card:hover {
        border-color: #0284c7;
        box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.12);
    }

    .turn-conversations .turn-conversations-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background-color: #e0f2fe;
        color: #0369a1;
        font-weight: 700;
        font-size: 0.9rem;
        border-radius: 8px;
        flex-shrink: 0;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .turn-conversations .turn-conversations-card:hover .turn-conversations-number {
        background-color: #0284c7;
        color: #ffffff;
    }

    .turn-conversations .turn-conversations-details h3 {
        margin: 0 0 3px 0;
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
    }

    .turn-conversations .turn-conversations-details p {
        margin: 0;
        font-size: 0.85rem;
        color: #64748b;
        line-height: 1.35;
    }

    /* 180 Degree Text Rotation Effect on Hover */
    .turn-conversations .rotate-text {
        display: inline-block;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        backface-visibility: visible;
    }

    .turn-conversations .turn-conversations-card:hover .rotate-text {
        transform: rotateX(360deg);
        /* Rotates text 360 degrees vertically */
    }

    /* Responsive Layout */
    @media (max-width: 868px) {
        .turn-conversations .turn-conversations-grid {
            flex-direction: column;
        }

        .turn-conversations .turn-conversations-cards-list,
        .turn-conversations .turn-conversations-visual {
            width: 100%;
        }
    }



    /* First Message Section */
    .first-message-section {
        padding: 50px 24px;
        background-color: #f8fafc;
        font-family: sans-serif;
    }


    .first-message-header {
        text-align: center;
        margin-bottom: 16px;
    }

    .first-message-header.text-left {
        text-align: left;
    }

    .first-message-header h2 {
        font-size: 26px;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.02em;
        margin: 0;
    }

    .first-message-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    @media (min-width: 992px) {
        .first-message-grid {
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
        }
    }

    .first-message-list {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
    }

    /* Vertical line linking numbers */
    .first-message-list::before {
        content: '';
        position: absolute;
        left: 23px;
        top: 24px;
        bottom: 24px;
        width: 2px;
        background: #e2e8f0;
        z-index: 1;
    }

    .first-message-item {
        position: relative;
        display: flex;
        gap: 20px;
        padding: 6px 20px;
        border-radius: 16px;
        border: 1px solid #dbe5ed;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
        transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        cursor: pointer;
        margin-bottom: 4px;
        background-color: #f8fefa;
        z-index: 2;
    }

    .first-message-item:hover {
        transform: scale(1.03);
        background-color: #f1f5f9;
        border-color: #287e03;
        box-shadow: 0 10px 24px rgba(2, 132, 199, 0.16);
    }


    .first-message-item.active {
        background-color: #f1f5f9;
        border-color: #287e03;
        box-shadow: 0 6px 18px rgba(2, 132, 199, 0.12);
    }

    .first-message-num {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
        background-color: #e0f2fe;
        color: #111111;
        font-weight: 700;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .first-message-item.active .first-message-num,
    .first-message-item:hover .first-message-num {
        background-color: #287e03;
        color: #ffffff;
    }

    .first-message-content {
        flex: 1;
    }

    .first-message-content h3 {
        font-size: 20px;
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 6px 0;
    }

    .first-message-content p {
        font-size: 15px;
        color: #111111;
        line-height: 1.5;
        margin: 0;
    }



    .first-message-single-img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .why-business-section {
        padding: 50px 24px;
        background-color: #f8fafc;
        overflow: hidden;
        font-family: sans-serif;
    }

    .why-business-container {
        position: relative;
    }

    .why-business-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .why-business-header h2 {
        font-size: 26px;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.02em;
        margin: 0;
    }

    .why-business-carousel-wrapper {
        position: relative;
        padding: 0 40px;
    }

    .why-business-track-container {
        overflow: hidden;
        border-radius: 20px;
    }

    .why-business-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .why-business-card-wrapper {
        min-width: 100%;
        box-sizing: border-box;
        padding: 0 12px;
    }

    @media (min-width: 768px) {
        .why-business-card-wrapper {
            min-width: 50%;
        }
    }

    @media (min-width: 992px) {
        .why-business-card-wrapper {
            min-width: 33.333%;
        }
    }

    .why-business-card {
        background: #f8fefa;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 24px;
        height: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
    }

    .why-business-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
    }

    .why-business-visual-box {
        background-color: transparent;
        border-radius: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        height: 160px;
        box-sizing: border-box;
    }

    .why-business-visual-img {
        width: 100%;
        height: 100%;
        object-fit: none;
        display: block;
    }

    @media (max-width: 767px) {
        .why-business-carousel-wrapper {
            padding: 0;
        }

        .why-business-track-container {
            border-radius: 12px;
        }

        .why-business-card-wrapper {
            min-width: 100%;
            padding: 0;
        }

        .why-business-card {
            border-radius: 12px;
            padding: 18px;
        }

        .why-business-visual-box {
            height: 140px;
            margin-bottom: 18px;
        }

        .why-business-visual-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .why-business-nav {
            width: 36px;
            height: 36px;
        }

        .why-business-nav.prev {
            left: 4px;
        }

        .why-business-nav.next {
            right: 4px;
        }

        .why-business-dots {
            margin-top: 20px;
        }
    }

    .why-business-graphic {
        background: #f8fefa;
        border: 1px solid #bae6fd;
        border-radius: 12px;
        padding: 12px 18px;
        box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 220px;
    }

    .why-business-graphic-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background-color: #0284c7;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-business-card-title {
        font-size: 20px;
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 12px 0;
    }

    .why-business-card-desc {
        font-size: 15px;
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }

    .why-business-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #f8fefa;
        border: 1px solid #e2e8f0;
        color: #0f172a;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        z-index: 10;
        transition: all 0.2s ease;
    }

    .why-business-nav:hover {
        background-color: #0f172a;
        color: #ffffff;
    }

    .why-business-nav.prev {
        left: -10px;
    }

    .why-business-nav.next {
        right: -10px;
    }

    .why-business-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 32px;
    }

    .why-business-dot-btn {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #cbd5e1;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .why-business-dot-btn.active {
        background-color: #0284c7;
        width: 28px;
        border-radius: 10px;
    }

    /* Compact page typography and section spacing */
    h2,
    h2[class] {
        font-size: 26px;
        line-height: 1.25;
    }

    p,
    p[class] {
        font-size: 14px;
        line-height: 1.5;
    }


    .cc360-feature-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .business-struggle {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .grow-whatsapp {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .customer-journey,
    .first-message-section,
    .why-business-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Keep the hero limited to its actual banner content. */
    .hero-banner,
    .hero-banner.container {
        min-height: 0 !important;
        height: auto;
    }

    .hero-banner-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
    }

    .hero-content {
        background-color: transparent;
        /* color: #ffffff; */
    }

    @media (max-width: 900px) {
        .hero-banner-inner {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }



    /* Styles moved from index.php inline attributes */
    .home-demo-banner {
        background-color: #ffffff !important;
    }

    .business-struggle-white {
        background-color: #f8fafc;
    }

    .cta-img {
        display: block;
        width: 100%;
        height: auto;
        padding: 60px 0;
        cursor: pointer;
    }

    @media (max-width: 767px) {
        .cta-img {
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }
    }

    .why-business-graphic-label {
        font-size: 13px;
        font-weight: 600;
    }

    .label-blue {
        color: #0369a1;
    }

    .label-teal {
        color: #0f766e;
    }

    .label-indigo {
        color: #4338ca;
    }

    .label-purple {
        color: #6d28d9;
    }

    .label-pink {
        color: #be185d;
    }

    .icon-teal {
        background-color: #0d9488;
    }

    .icon-indigo {
        background-color: #6366f1;
    }

    .icon-blue {
        background-color: #0284c7;
    }

    .icon-purple {
        background-color: #8b5cf6;
    }

    .icon-pink {
        background-color: #ec4899;
    }

    .cta-copy-spaced {
        padding-bottom: 20px;
    }

    .faq-content-wrapper {
        padding: 60px 0;
    }

    .enquiry-submit-frame {
        display: none;
    }

    /* Site-wide compact typography and shared section background */
    h2,
    h2[class] {
        font-size: 26px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
    }

    p,
    p[class] {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }

    ul li {
        font-size: 16px !important;
    }

    body>section:not(#pricing):nth-of-type(even) {
        background-color: #ffffff !important;
    }

    /* body>section:not(#pricing):nth-of-type(odd) {
        background-color: #f0f8eb !important;
    } */


    .teams-compact-section {
        padding: 60px 16px;
        background: #fafafa;
        font-family: sans-serif;
    }

    .teams-compact-container {
        width: 100%;
    }

    .teams-compact-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .teams-compact-header h2 {
        font-size: 22px;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.01em;
        margin: 0 0 6px 0;
    }

    .teams-compact-header p {
        font-size: 13.5px;
        color: #475569;
        line-height: 1.4;
        margin: 10px auto;
        max-width: 640px;
    }

    /* Flip UL/LI Grid Layout */
    .teams-flip-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    @media (min-width: 640px) {
        .teams-flip-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 992px) {

        .teams-flip-list {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* 90-Degree Vertical Flip Card Item */
    .teams-flip-item {
        background-color: transparent;
        height: 224px;
        perspective: 1000px;
    }

    .teams-flip-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.5s ease-in-out;
        transform-style: preserve-3d;
        border-radius: 10px;
    }

    /* Vertical 90-degree flip on hover */
    .teams-flip-item:hover .teams-flip-inner {
        transform: rotateX(-90deg);
    }

    .teams-flip-front,
    .teams-flip-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 12px;
        box-sizing: border-box;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    /* Dark overlay on background image for readable text */
    .teams-flip-front::before,
    .teams-flip-back::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.65);
        border-radius: 10px;
        z-index: 1;
    }

    /* Target direct content above dark overlay */
    .teams-flip-front h3,
    .teams-flip-back p {
        position: relative;
        z-index: 2;
    }

    .teams-flip-front {
        border: 1px solid #e2e8f0;
        color: #ffffff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    }

    .teams-flip-front h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }

    .teams-flip-back {
        color: #ffffff;
        border: 1px solid #0f172a;
        transform: rotateX(90deg) translateZ(60px);
    }

    .teams-flip-item:hover .teams-flip-back {
        transform: rotateX(90deg) translateZ(0);
    }

    .teams-flip-back p {
        font-size: 20px;
        line-height: 1.4;
        margin: 0;
        color: #f8fafc !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }

    /* Card Background Images (Replace image URLs as needed) */
    .bg-marketing {
        background-image: url('../images/marketing_team.png');
    }

    .bg-sales {
        background-image: url('../images/sales_team.png');
    }

    .bg-support {
        background-image: url('../images/support_team.png');
    }

    .bg-operations {
        background-image: url('../images/opeartion_team.png');
    }

    /* Conversations Split Section */
    .conversations-split-section {
        padding: 60px 16px;
        background: #f8fafc;
        font-family: sans-serif;
    }

    .conversations-split-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: center;
    }

    @media (min-width: 768px) {
        .conversations-split-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* Left Side Column */
    .conversations-content-left {
        display: flex;
        flex-direction: column;
    }

    .conversations-content-left h2 {
        font-size: 26px;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.01em;
        margin: 0 0 20px 0;
        line-height: 1.25;
    }

    .conversations-text-lead {
        font-size: 14px;
        color: #475569;
        line-height: 1.5;
        margin: 0 0 20px 0;
    }

    /* Vertical Column UL Stack */
    .conversations-elements-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
        display: flex;
        flex-direction: column;
        /* Displays items vertically in a column */
        gap: 8px;
    }

    .conversations-elements-list li {
        font-size: 13.5px;
        font-weight: 600;
        color: #0f172a;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        padding: 8px 12px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .conversations-elements-list li::before {
        content: "✓";
        color: #0284c7;
        font-weight: 800;
        font-size: 12px;
    }

    .conversations-text-footer {
        font-size: 14px;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
    }

    /* Right Side Image Column */
    .conversations-media-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .conversations-media-right img {
        width: auto;
        height: auto;
        object-fit: cover;
    }

    @media (max-width: 767px) {
        .conversations-split-grid {
            gap: 24px;
        }

        .conversations-media-right img {
            width: 60%;
            max-width: 360px;
            height: auto;
            object-fit: contain;
        }
    }



    /* blog */

    .about-us-page .about-us-banner {
        overflow: hidden;
    }

    .about-us-page .about-us-banner-inner {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .about-us-page .about-us-banner-inner img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* .about-us-page .about-us-banner-inner::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.35);
    } */

    .about-us-page .about-us-banner-inner h1 {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 24px;
        color: #111111;
        font-size: 36px;
        line-height: 1.15;
        text-align: center;
    }

    .about-us-page .about-section {
        background-color: #ffffff;
        padding: 60px 0;
    }

    .about-us-page .about-us-content-row {
        display: flex;
        align-items: flex-start;
        gap: 24px;
    }

    .about-us-page .about-us-text-column {
        flex: 1 1 0;
        min-width: 0;
    }

    .about-us-page .about-us-image-column {
        flex: 1 1 0;
        min-width: 0;
    }

    .about-us-page .about-us-image-box {
        overflow: hidden;
        border-radius: 12px;

    }

    .about-us-page .about-us-image-box img {
        display: block;
        width: auto;
        height: auto;
        object-fit: cover;
    }

    .about-us-page .about-content .static-title-underline {
        width: 100%;
        justify-content: flex-start !important;
    }

    .about-us-page .about-content .section-title {
        text-align: left;
        font-size: 32px !important;
        font-weight: 700 !important;
    }

    .about-us-page .about-content .description-text {
        margin: 0 20px 20px 0;
        color: #424850;
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    @media (max-width: 600px) {
        .about-us-page .about-section {
            padding: 40px 0;
        }

        .about-us-page .about-us-content-row {
            flex-direction: column;
            gap: 12px;
        }
    }


    /* Banner Image Styling */
    .blog-banner {
        width: 100%;
        margin-bottom: 40px;
    }

    .blog-banner img {
        width: 100%;
        height: auto;
        background-color: #f8fefa;
        object-fit: cover;
        display: block;
    }

    .pricing-banner {
        overflow: hidden;
    }

    .pricing-banner-inner {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .pricing-banner-inner img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Section Title */
    .section-title-wrapper {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #111;
    }


    .brand-core {
        color: #162c58;
    }

    .brand-connect {
        color: #2052c1;
    }

    .brand-number {
        color: #2e810a;
    }

    .about-feature-section {
        padding: 60px 0;
        background-color: #ffffff !important;
    }

    .centered-section-heading {
        text-align: center !important;
    }

    .vision-section {
        padding: 60px 0;
    }

    .cta-highlight-dark {
        color: #111111;
    }

    .title-underline {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: -6px !important;
    }

    /* 3-Column Grid Layout */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0 0 60px 0;
    }

    /* Blog Card Design */
    .blog-card {
        background: #f8fefa;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    /* Card Image & Green Border Wrapper */
    .card-image-wrapper {
        padding: 12px;
    }

    .card-image-border {
        border: 2px solid #287e03;
        border-radius: 12px;
        padding: 5px;
        overflow: hidden;
    }

    .card-image-border img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    /* Card Content */
    .card-body {
        padding: 15px 20px 25px 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    /* Meta Info (Date & Tag) */
    .card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
        color: #6c757d;
        padding-bottom: 12px;
        margin-bottom: 15px;
        border-bottom: 1px solid #d9dee3;
    }

    .meta-date {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .meta-tag {
        background-color: #eaf5e6;
        color: #287e03;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Title */
    .card-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a2b3c;
        line-height: 1.4;
        margin-bottom: 20px;
        flex-grow: 1;
        cursor: pointer;
    }

    /* Button */
    .btn-read-more {
        align-self: flex-start;
        background-color: #287e03;
        color: #ffffff;
        text-decoration: none;
        padding: 10px 18px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.3s ease, background-color 0.2s ease;
    }

    .btn-read-more:hover {
        transform: scale(1.05);
        background-color: #1e5c02;
    }

    .card-title:hover {
        text-decoration: underline;
    }

    /* .blog-p {
        padding-bottom: 20px;
    } */

    /* Responsive Design for Mobile & Tablets */
    @media (max-width: 992px) {
        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .blog-grid {
            grid-template-columns: 1fr;
        }
    }



    /* Base Container & Reset Scoping */
    .about-us-page {
        background-color: #f6faf7;
        font-family: sans-serif;
        color: #333333;
        box-sizing: border-box;
    }

    .about-us-page * {
        box-sizing: border-box;
    }

    .about-us-page__split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* gap: 40px; */
        align-items: center;
    }

    /* Left Side: Media styling */
    .about-us-page__media {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-us-page__img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        object-fit: cover;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* Right Side: Text styling */
    .about-us-page__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about-us-page__title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #111111;
        margin: 0 0 8px 0;
    }

    .about-us-page__title-underline {
        width: 48px;
        height: 4px;
        background-color: #008a00;
        border-radius: 2px;
        margin-bottom: 24px;
    }

    .about-us-page__paragraph {
        font-size: 1rem;
        line-height: 1.6;
        color: #4a5568;
        margin: 0 0 16px 0;
    }

    .about-us-page__paragraph:last-child {
        margin-bottom: 0;
    }

    .about-us-page .about-us-story-section {
        padding: 60px 0;
    }

    .about-us-page .about-story-underline {
        display: flex;
        justify-content: flex-start;
        margin: 8px 0 24px;
    }

    .about-us-page .about-story-underline .animated-line {
        width: 60px;
        height: 4px;
        margin: 0;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        background-color: #287e03;
    }

    .about-us-page .about-story-underline .animated-line::before {
        content: '';
        position: absolute;
        top: 0;
        left: -50%;
        width: 50%;
        height: 100%;
        border-radius: 10px;
        background-color: #f8fefa;
        animation: aboutStoryLine 2s ease-in-out infinite;
    }

    @keyframes aboutStoryLine {
        0% {
            left: -50%;
        }

        50% {
            left: 100%;
        }

        100% {
            left: -50%;
        }
    }

    /* Cards Grid */
    .about-us-page__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    .about-us-page__card {
        background: #ffffff;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }



    .about-us-page__card-image {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
        border: 2px solid #0d4b68;
    }

    /* .about-us-page__card-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    } */

    .about-us-page__card-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #0d4b68;
        margin: 0 0 12px 0;
    }

    .about-us-page__card-text {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #666666;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 868px) {
        .about-us-page__split {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .about-us-page__media {
            order: 1;
            /* Image stays on top for mobile */
        }

        .about-us-page__content {
            order: 2;
        }
    }





    /* Base Layout & Compact Container */
    .about-us-page {
        background-color: #f6faf7;
        /* padding: 30px 15px; */
        /* Reduced vertical padding */
        font-family: sans-serif;
        color: #333333;
        box-sizing: border-box;
    }

    .about-us-page * {
        box-sizing: border-box;
    }

    .about-us-page__container {
        max-width: 900px;
        /* Reduced container max-width */
        margin: 0 auto;
    }

    /* Compact Header Section */
    .about-us-page__header {
        text-align: left;
        max-width: none;
        margin: 0 0 24px 0;
        /* Reduced bottom margin */
    }

    .about-us-page__header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d4b68;
        margin: 0 0 6px 0;
        text-align: left;
    }

    .about-us-page__header-line {
        width: 40px;
        height: 3px;
        background-color: #25d366;
        margin: 0 0 10px 0;
        border-radius: 2px;
    }

    .about-us-page__header p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #555555;
        margin: 0;
        text-align: left;
    }

    .about-us-page .about-us-page__header .static-title-underline {
        display: flex;
        justify-content: flex-start !important;
        margin: 8px 0 12px !important;
    }

    .about-us-page .about-us-page__header .static-title-underline .animated-line {
        margin: 0;
    }

    /* Compact 50/50 Grid */
    .about-us-page__layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        /* Reduced gap between columns */
        align-items: center;
    }

    .about-us-page__left-column {
        min-width: 0;
    }

    /* Left Side: Unordered List */
    .about-us-page__list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        /* Reduced vertical spacing between items */
    }

    /* Compact Interactive List Items */
    .about-us-page__item {
        background: #ffffff;
        border-radius: 10px;
        /* Sleeker corner radius */
        padding: 6px 14px;
        /* Reduced internal padding */
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        cursor: pointer;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
    }

    .about-us-page__item h3 {
        font-size: 0.95rem;
        /* Smaller heading size */
        font-weight: 700;
        color: #0d4b68;
        margin: 0 0 3px 0;
        transition: color 0.25s ease;
    }

    .about-us-page__item p {
        font-size: 0.82rem;
        /* Compact paragraph size */
        line-height: 1.35;
        color: #666666;
        margin: 0;
        transition: color 0.25s ease;
    }

    /* HOVER EFFECTS: Controlled Zoom & Accent Highlight */
    .about-us-page__item:hover {
        /* transform: scale(1.02) translateX(4px); */
        background-color: #ffffff;
        border-color: #25d366;
        box-shadow: 0 6px 16px rgba(13, 75, 104, 0.1);
    }

    .about-us-page__item:hover h3 {
        color: #008a00;
    }

    .about-us-page__item:hover p {
        color: #222222;
    }

    /* Right Side: Compact Image Styling */
    .about-us-page__image-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: right;
    }

    .about-us-page__image {
        width: auto;
        height: auto;
        object-fit: cover;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .about-us-page__layout {
            grid-template-columns: 1fr;
        }

        .about-us-page__image-wrapper {
            order: -1;
        }

        .about-us-page__image {
            max-width: 100%;
            height: 240px;
            /* Smaller height on mobile devices */
        }
    }

    :root {
        --primary-color: #0f172a;
        --text-color: #334155;
        --accent-color: #2563eb;
        --bg-color: #f8fafc;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: sans-serif;
        background-color: var(--bg-color);
        color: var(--text-color);
        line-height: 1.6;
    }

    .about-us-page .approach-section {
        padding: 60px 0;
    }

    .about-us-page .approach-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .about-us-page .approach-content-col {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .about-us-page .approach-content-col h2 {
        font-size: 2.25rem;
        color: var(--primary-color);
        font-weight: 700;
        letter-spacing: -0.025em;
    }

    .about-us-page .approach-content-col p {
        font-size: 1.125rem;
    }

    .about-us-page .approach-content-col p strong {
        color: var(--primary-color);
    }

    .about-us-page .approach-image-col {
        width: 100%;
        display: flex;
        justify-content: left;
        align-items: center;
    }

    .about-us-page .approach-image-col img {
        width: auto;
        height: auto;

    }

    /* Mobile Responsive Layout */
    @media (max-width: 768px) {
        .about-us-page .approach-container {
            grid-template-columns: 1fr;
            gap: 28px;
        }
    }



    /* Base Page Styling & Scoping */
    .about-us-page {
        background-color: #f4f6f8;
        /* padding: 60px 20px; */
        font-family: sans-serif;
        color: #333333;
        box-sizing: border-box;
    }

    .about-us-page * {
        box-sizing: border-box;
    }

    .about-us-page__container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Header Center Accent */
    .about-us-page__header {
        text-align: center;
        margin-bottom: 24px;
    }

    .about-us-page__header h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #0d4b68;
        margin: 0 0 10px 0;
    }

    .about-us-page__header-line {
        width: 44px;
        height: 4px;
        background-color: #008a00;
        margin: 0 auto;
        border-radius: 2px;
    }

    /* Equal Grid Layout */
    .about-us-page__cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    /* Unified Equal-Size Card Layout */
    .about-us-page__card {
        background: #ffffff;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        border: 1px solid #eef2f5;
        display: flex;
        flex-direction: column;
        height: 100%;
        /* Ensures all cards stretch to identical height */
        cursor: pointer;
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
    }

    /* Card Image Container */
    .about-us-page__card-image {
        width: 100%;
        height: 180px;
        /* Uniform height for image frames */
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
        border: 2px solid #0d4b68;
        transition: border-color 0.35s ease;
        flex-shrink: 0;
    }

    .about-us-page__card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

    /* Typography */
    .about-us-page__card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0d4b68;
        margin: 0 0 10px 0;
        transition: color 0.35s ease;
    }

    .about-us-page__card p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #666666;
        margin: 0;
        flex-grow: 1;
        /* Pushes content evenly across equal height cards */
        transition: color 0.35s ease;
    }

    /* HOVER EFFECTS: Scale 1.05 Zoom + Border & Text Color Change */


    .about-us-page__card:hover .about-us-page__card-image {
        border-color: #25d366;
    }

    .about-us-page__card:hover h3 {
        color: #287e03;
        /* Green accent color on hover */
    }

    .about-us-page__card:hover p {
        color: #222222;
    }

    .global-business-section .industry-list li:hover {
        border-color: #287e03;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .about-us-page__cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .about-us-page__cards-grid {
            grid-template-columns: 1fr;
        }
    }




    .global-business-section {
        padding: 60px 0;
        /* Reduced top/bottom padding */
        width: 100%;
        box-sizing: border-box;
        background-color: #f8f9fa;
    }

    .global-business-section .container {
        margin: 0 auto;
    }

    .global-business-section .content-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    /* 50% Left Side */
    .global-business-section .text-content {
        flex: 1;
    }

    .global-business-section h2 {
        font-size: 26px;
        /* Smaller heading */
        font-weight: 700;
        color: #0b192c;
        margin-top: 0;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .global-business-section p {
        font-size: 13.5px;
        line-height: 1.4;
        color: #4a5568;
        margin-bottom: 8px;
    }

    /* Compact List Items */
    .global-business-section .industry-list {
        list-style: none;
        padding: 0;
        margin: 12px 0 0 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
        /* Reduced gap between boxes */
    }

    .global-business-section .industry-list li {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 12px 12px;
        /* Thinner inner box padding */
        display: flex;
        align-items: flex-start;
        gap: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    }

    .global-business-section .industry-list .icon {
        color: #0070f3;
        font-weight: bold;
        font-size: 13px;
        line-height: 1.4;
        flex-shrink: 0;
    }

    .global-business-section .industry-list .list-text {
        font-size: 13px;
        line-height: 1.4;
        color: #4a5568;
    }

    .global-business-section .industry-list li strong {
        color: #0b192c;
        font-weight: 700;
    }

    /* 50% Right Side */
    .global-business-section .image-content {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .global-business-section .image-content img {
        width: auto;
        /* Controls image height */
        height: auto;
        object-fit: cover;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .global-business-section .content-wrapper {
            flex-direction: column;
            gap: 20px;
        }

        .global-business-section .text-content,
        .global-business-section .image-content {
            width: 100%;
        }

        .global-business-section .image-content img {
            max-height: none;
        }
    }


    .why-coreconnect-section {
        padding: 60px 0;
        background-color: #ffffff;
        width: 100%;
        box-sizing: border-box;
    }

    .why-coreconnect-section .container {
        margin: 0 auto;
    }

    .why-coreconnect-section .why-header {
        text-align: center;
        margin-bottom: 28px;
    }

    .why-coreconnect-section .title-underline {
        justify-content: center !important;
    }

    .why-coreconnect-section .why-header h2 {
        font-size: 26px;
        font-weight: 700;
        color: #0b192c;
        margin: 0 0 8px 0;
    }

    /* Grid layout */
    .why-coreconnect-section .why-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Individual Card Style Horizontal Layout */
    .why-coreconnect-section .why-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 14px 16px;
        transition: background-color 0.2s ease, border-color 0.2s ease;
        display: flex;
        flex-direction: row;
        align-items: center;
        /* Center icon vertically */
        gap: 14px;
    }

    /* Hover Effect: Background & Border color change only */
    .why-coreconnect-section .why-card:hover {
        background-color: #f0f7ff;
        border-color: #0070f3;
    }

    /* Large Left Icon Box spanning full height */
    .why-coreconnect-section .icon-box {
        width: 58px;
        height: 58px;
        /* Set fixed height so it centers nicely */
        background-color: #e6f0fa;
        color: #0070f3;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .why-coreconnect-section .icon-box svg {
        width: 32px;
        height: 32px;
    }

    .why-coreconnect-section .why-card:hover .icon-box {
        background-color: #0070f3;
        color: #ffffff;
    }

    /* Compact Content Block */
    .why-coreconnect-section .card-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .why-coreconnect-section .why-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: #0b192c;
        margin: 0 0 4px 0;
        line-height: 1.25;
    }

    .why-coreconnect-section .why-card p {
        font-size: 12.5px;
        line-height: 1.4;
        color: #4a5568;
        margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .why-coreconnect-section .why-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .why-coreconnect-section .why-cards-grid {
            grid-template-columns: 1fr;
        }

        .why-coreconnect-section .why-header h2 {
            font-size: 22px;
        }
    }


    .connect-cta-section-v2 {
        padding: 60px 0;
        background-color: #ffffff;
        width: 100%;
        box-sizing: border-box;
    }

    .connect-cta-section-v2 .container {
        margin: 0 auto;
    }

    /* Main Container Card */
    .cta-v2-card {
        background: #ffffff;
        /* padding: 12px; */
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        position: relative;
        overflow: hidden;
    }

    /* Top Accent Line */
    .cta-v2-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    /* Text Column */
    .cta-v2-text {
        flex: 1.2;
    }

    .cta-v2-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 5px 12px;
        background-color: #f0f7ff;
        color: #0070f3;
        font-size: 12px;
        font-weight: 600;
        border-radius: 30px;
        margin-bottom: 14px;
    }

    .cta-v2-badge .pulse-dot {
        width: 6px;
        height: 6px;
        background-color: #25D366;
        border-radius: 50%;
    }

    .cta-v2-text h2 {
        font-size: 32px;
        font-weight: 800;
        color: #0b192c;
        margin: 0 0 12px 0;
        line-height: 1.2;
    }

    .cta-v2-desc {
        font-size: 14px;
        line-height: 1.6;
        color: #4a5568;
        margin: 0 0 12px 0;
    }

    .cta-v2-highlight {
        font-size: 15px;
        font-weight: 700;
        color: #0070f3;
        margin: 0 0 20px 0;
    }

    /* Tag Pills */
    .cta-v2-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }

    .tag-pill {
        background: #f1f5f9;
        color: #334155;
        font-size: 12.5px;
        font-weight: 500;
        padding: 6px 14px;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }

    /* Action Button */
    .cta-v2-action {
        display: flex;
    }

    .cta-v2-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #0070f3;
        color: #ffffff;
        font-weight: 600;
        font-size: 14.5px;
        padding: 13px 26px;
        border-radius: 10px;
        text-decoration: none;
        transition: background-color 0.2s ease, border-color 0.2s ease;
        border: 1px solid #0070f3;
    }

    .cta-v2-btn svg {
        width: 16px;
        height: 16px;
        transition: transform 0.2s ease;
    }

    .cta-v2-btn:hover {
        background-color: #005bb5;
        border-color: #005bb5;
        color: #ffffff;
    }

    .cta-v2-btn:hover svg {
        transform: translateX(4px);
    }

    /* Graphic Column */
    .cta-v2-visual {
        flex: 0.8;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cta-v2-svg {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .cta-v2-card {
            flex-direction: column;
            padding: 32px 8px;
        }

        .cta-v2-visual {
            width: 100%;
        }

        .cta-v2-svg {
            max-width: 260px;
        }
    }

    @media (max-width: 576px) {
        .cta-v2-text h2 {
            font-size: 24px;
        }

        .cta-v2-tags {
            gap: 6px;
        }

        .tag-pill {
            font-size: 11.5px;
            padding: 4px 10px;
        }
    }



    /* Scoped to .contact-us-coreconnect360 to prevent class name overlaps */
    .contact-us-coreconnect360 {
        width: 100%;
    }

    .contact-banner-section {
        width: 100%;
    }

    .contact-content-section {
        width: 100%;
        padding: 60px 0;
    }

    .contact-us-coreconnect360 .contact-page-title {
        color: #287e03;
        font-size: 36px !important;
    }

    .contact-us-coreconnect360 .contact-subtitle-text {
        text-align: center;
        color: #4a5568;
        font-size: 16px !important;
        /* margin-top: 10px; */
    }

    /* 50% / 50% Equal Height Grid Layout */
    .contact-us-coreconnect360 .contact-grid-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 32px;
        margin-top: 40px;
        margin-bottom: 60px;
        align-items: stretch;
        /* Forces equal height for left and right columns */
    }

    .contact-us-coreconnect360 .contact-left-col,
    .contact-us-coreconnect360 .contact-right-col {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-width: 0;
    }

    /* Shared Card Styles for Equal Height */
    .contact-us-coreconnect360 .contact-form-card,
    .contact-us-coreconnect360 .contact-details-card {
        background: #ffffff;
        padding: 36px;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        box-sizing: border-box;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
    }

    .contact-us-coreconnect360 .form-heading {
        font-size: 22px;
        font-weight: 700;
        color: #0b192c;
        margin: 0 0 6px 0;
    }

    .contact-us-coreconnect360 .form-subheading {
        font-size: 13.5px;
        color: #64748b;
        margin-bottom: 24px;
    }

    .contact-us-coreconnect360 .form-group-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 18px;
    }

    .contact-us-coreconnect360 .form-group-item label {
        font-size: 13px;
        font-weight: 600;
        color: #0b192c;
        margin-bottom: 6px;
    }

    .contact-us-coreconnect360 .form-group-item input,
    .contact-us-coreconnect360 .form-group-item textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        font-size: 14px;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        box-sizing: border-box;
    }

    /* Focus state using #287e03 */
    .contact-us-coreconnect360 .form-group-item input:focus,
    .contact-us-coreconnect360 .form-group-item textarea:focus {
        border-color: #287e03;
        box-shadow: 0 0 0 3px rgba(40, 126, 3, 0.15);
    }

    /* Submit Button using #287e03 */
    .contact-us-coreconnect360 .btn-submit-message {
        width: 100%;
        background-color: #287e03;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        padding: 14px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease;
        margin-top: 6px;
        letter-spacing: 0.5px;
    }

    .contact-us-coreconnect360 .btn-submit-message:hover {
        background-color: #1f6302;
        transform: translateY(-2px);
    }

    /* Info Item Block Zoom Effect on Hover */
    .contact-us-coreconnect360 .info-items-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }

    .contact-us-coreconnect360 .info-item-block {
        display: flex;
        align-items: flex-start;
        gap: 22px;
        padding: 16px;
        border-radius: 12px;
        background-color: #f8fafc;
        border: 1px solid #f1f5f9;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    .contact-us-coreconnect360 .info-item-block:hover {
        transform: scale(1.01);
        background-color: #ffffff;
        /* box-shadow: 0 8px 20px rgba(40, 126, 3, 0.12); */
        border-color: #e2e8f0;
    }

    /* Icon Container using #287e03 */
    .contact-us-coreconnect360 .info-icon-box {
        width: 48px;
        height: 48px;
        min-width: 48px;
        background-color: rgba(40, 126, 3, 0.1);
        color: #287e03;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    .contact-us-coreconnect360 .info-item-block:hover .info-icon-box {
        background-color: #287e03;
        color: #ffffff;
        transform: scale(1.02);
    }

    .contact-us-coreconnect360 .info-text-box h4 {
        font-size: 15px;
        font-weight: 700;
        color: #0b192c;
        margin: 0 0 4px 0;
    }

    .contact-us-coreconnect360 .info-text-box p {
        font-size: 13.5px;
        color: #334155;
        margin: 0;
        line-height: 1.5;
    }

    .contact-us-coreconnect360 .info-text-box a {
        color: #287e03;
        text-decoration: none;
        font-weight: 600;
    }

    .contact-us-coreconnect360 .info-text-box a:hover {
        text-decoration: underline;
    }

    .contact-us-coreconnect360 .info-subtext {
        display: block;
        font-size: 12px;
        color: #64748b;
        margin-top: 4px;
    }

    /* Connect With Us / Social Links */
    .contact-us-coreconnect360 .social-connect-block {
        padding-top: 16px;
        border-top: 1px solid #f1f5f9;
    }

    .contact-us-coreconnect360 .social-connect-block h4 {
        font-size: 15px;
        font-weight: 700;
        color: #0b192c;
        margin: 0 0 14px 0;
    }

    .contact-us-coreconnect360 .social-links-list {
        display: flex;
        gap: 12px;
    }

    .contact-us-coreconnect360 .social-link-item {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background-color: #f1f5f9;
        color: #334155;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        text-decoration: none;
        transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        border: 1px solid #e2e8f0;
    }

    .contact-us-coreconnect360 .social-link-item:hover {
        transform: scale(1.15);
        background-color: #287e03;
        color: #ffffff;
        border-color: #287e03;
        box-shadow: 0 4px 12px rgba(40, 126, 3, 0.3);
    }

    /* Responsive Grid Adjustments */
    @media (max-width: 992px) {
        .contact-us-coreconnect360 .contact-grid-container {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .contact-us-coreconnect360 .contact-form-card,
        .contact-us-coreconnect360 .contact-details-card {
            padding: 24px;
        }
    }

    @media (max-width: 576px) {
        .contact-content-section {
            padding: 40px 0;
        }

        .contact-us-coreconnect360 .contact-grid-container {
            margin-top: 28px;
            margin-bottom: 40px;
        }

        .contact-us-coreconnect360 .contact-form-card,
        .contact-us-coreconnect360 .contact-details-card {
            padding: 20px;
            border-radius: 12px;
        }

        .contact-us-coreconnect360 .info-item-block {
            gap: 14px;
            padding: 12px;
        }

        .contact-us-coreconnect360 .info-text-box {
            min-width: 0;
        }

        .contact-us-coreconnect360 .info-text-box p {
            overflow-wrap: anywhere;
        }

        .contact-us-coreconnect360 .social-links-list {
            flex-wrap: wrap;
        }
    }




    .legal-wrapper {
        width: 100%;
        background-color: #ffffff;
    }

    .legal-container {
        padding: 60px 60px;
    }

    .legal-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .legal-effective-date {
        display: inline-block;
        background-color: #e6f4ea;
        color: #087a1d;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 20px;
        margin-top: 15px;
    }

    /* Card Container Layout */
    .legal-card-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* Card Design Matching Screenshot */
    .terms-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 32px 36px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid #e5e7eb;
        border-left: 5px solid #087a1d;
        /* Accent Bar */
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .terms-card:hover {
        transform: scale(1.003);
        border-color: transparent;
        background: linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(90deg, #087a1d, #2052c1) border-box;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    }

    .terms-card-subtitle {
        text-transform: uppercase;
        font-size: 1rem;
        letter-spacing: 1px;
        font-weight: 700;
        color: #111111;
        margin-bottom: 8px;
    }

    .terms-card-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 16px;
    }

    .terms-card-content p {
        color: #4b5563;
        font-size: 0.96rem;
        line-height: 1.65;
        margin-bottom: 12px;
    }

    .terms-card-content p:last-child {
        margin-bottom: 0;
    }

    .terms-card-content ul {
        margin: 12px 0 16px 20px;
        padding: 0;
        list-style: disc;
        color: #4b5563;
    }

    .terms-card-content li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 6px;
        padding-left: 4px;
    }

    /* Contact Details Card Styling */
    .contact-details p {
        margin-bottom: 8px;
    }

    .contact-details a {
        color: #087a1d;
        text-decoration: none;
        font-weight: 500;
    }

    .contact-details a:hover {
        text-decoration: underline;
    }

    @media (max-width: 991px) {
        .legal-container {
            padding: 48px 32px;
        }

        .terms-card {
            padding: 28px 30px;
        }
    }

    @media (max-width: 640px) {
        .legal-container {
            padding: 40px 16px;
        }

        .legal-header {
            margin-bottom: 28px;
        }

        .terms-card {
            padding: 24px 20px;
        }

        .terms-card-title {
            font-size: 1.15rem;
            line-height: 1.4;
            overflow-wrap: anywhere;
        }

        .terms-card-subtitle {
            font-size: 0.85rem;
        }

        .terms-card-content p,
        .terms-card-content li {
            font-size: 0.92rem;
            overflow-wrap: anywhere;
        }

        .terms-card-content ul {
            margin-left: 18px;
        }

        .contact-details a {
            overflow-wrap: anywhere;
        }
    }



    /* Pricing Page Css */


    /* Brand Color Palette Variables based on CoreConnect360 */
    :root {
        --cc-primary-green: #287e03;
        --cc-dark-text: #0f172a;
        --cc-gray-text: #64748b;
        --cc-card-border: #e2e8f0;
    }

    .pricing-section-container {
        padding: 60px 0;
    }

    .pricing-hero-section {
        padding: 60px 0;
        background-color: #f9fafb;
    }

    .pricing-page h1,
    .pricing-page h2,
    .pricing-page h3 {
        font-family: sans-serif;
        color: #0f172a;
    }

    .pricing-page .enquiry-modal-header h2 {
        color: #ffffff;
    }

    .pricing-page .enquiry-modal-header p {
        color: rgba(255, 255, 255, 0.9);
    }

    .pricing-page p {
        font-family: sans-serif;
        font-size: 14px;
        line-height: 1.5;
    }

    .pricing-page .rannkly-card-subtitle,
    .pricing-page .rannkly-feature-list li,
    .pricing-page .card-footer-note,
    .pricing-page .industry-header p,
    .pricing-page .industry-item-card p,
    .pricing-page .why-us-card p,
    .pricing-page .final-cta-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .pricing-page .pricing-hero-header .section-title,
    .pricing-page .compare-title,
    .pricing-page .why-us-header h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    .pricing-page .rannkly-card-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .pricing-page .industry-header h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    .pricing-page .final-cta-title {
        color: #ffffff;
    }

    .pricing-page .final-cta-description {
        color: #ffffff !important;
    }

    .industry-cta-block {
        text-align: center;
    }

    .industry-cta-text {
        color: #64748b;
        margin-bottom: 16px;
    }

    .pricing-faq-container {
        padding: 60px 0;
    }

    .pricing-hero-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .pricing-hero-header .section-title {
        color: var(--cc-dark-text);
        font-size: 32px;
        font-weight: 700;
        /* margin-bottom: 12px; */
    }

    .pricing-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin: 30px 0 50px;
    }

    @media (max-width: 992px) {
        .pricing-cards-container {
            grid-template-columns: 1fr;
        }
    }

    /* Base Card Styling - All 3 Cards Start White */
    .rannkly-card {
        /* border-radius: 16px; */
        padding: 32px 24px;
        background: #ffffff;
        color: var(--cc-dark-text);
        border: 1px solid var(--cc-card-border);
        /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
        cursor: pointer;
    }

    /* Icon Style */
    .rannkly-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        font-size: 18px;
        background: rgba(40, 126, 3, 0.1);
        color: var(--cc-primary-green);
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    /* Typography Styles */
    .rannkly-card-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--cc-dark-text);
        transition: color 0.3s ease;
    }

    .rannkly-card-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 24px;
        min-height: 42px;
        color: var(--cc-gray-text);
        transition: color 0.3s ease;
    }

    /* Button Style */
    .btn-contact-sales {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        margin-bottom: 28px;
        background: transparent;
        color: var(--cc-primary-green);
        border: 1px solid var(--cc-primary-green);
        transition: all 0.3s ease;
    }

    /* Feature List Styles */
    .rannkly-feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .rannkly-feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.4;
        color: #334155;
        transition: color 0.3s ease;
    }

    .rannkly-feature-list i {
        margin-top: 3px;
        font-size: 13px;
        color: var(--cc-primary-green);
        transition: color 0.3s ease;
    }

    /* Footer Note */
    .card-footer-note {
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid rgba(226, 232, 240, 0.6);
        font-size: 13px;
        line-height: 1.4;
        color: var(--cc-gray-text);
        transition: color 0.3s ease, border-color 0.3s ease;
    }

    /* -------------------------------------------------------------------------- */
    /* HOVER STATE FOR ALL CARDS (ZOOM 1.01 + GREEN BACKGROUND)                   */
    /* -------------------------------------------------------------------------- */

    .rannkly-card:hover {
        transform: scale(1.01);
        background: #287e03;
        border-color: var(--cc-primary-green);
        color: #ffffff;
        box-shadow: 0 12px 30px rgba(40, 126, 3, 0.3);
    }

    .rannkly-card:hover .rannkly-card-title,
    .rannkly-card:hover .rannkly-card-subtitle,
    .rannkly-card:hover .rannkly-feature-list li,
    .rannkly-card:hover .rannkly-feature-list i,
    .rannkly-card:hover .card-footer-note {
        color: #ffffff;
    }

    .rannkly-card:hover .rannkly-card-icon {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }

    .rannkly-card:hover .btn-contact-sales {
        background: #ffffff;
        color: var(--cc-primary-green);
        border-color: #ffffff;
    }

    .rannkly-card:hover .card-footer-note {
        border-top-color: rgba(255, 255, 255, 0.25);
    }

    /* Compact Final CTA Banner Styles */
    /* 50/50 Split CTA Banner Styles */
    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .final-cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 50% Left, 50% Right */
        min-height: 320px;
    }

    @media (max-width: 992px) {
        .final-cta-grid {
            grid-template-columns: 1fr;
            min-height: auto;
        }
    }

    /* Left Side: 50% Column with Background Color */
    .final-cta-left {
        background: #011949;
        /* Dark Navy Slate background */
        color: #ffffff;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    @media (max-width: 576px) {
        .final-cta-left {
            padding: 24px 20px;
        }
    }

    .final-cta-subtitle {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #a7f3d0;
        /* Soft green highlight */
        margin-bottom: 8px;
    }

    .final-cta-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.3;
        color: #ffffff;
        margin-bottom: 10px;
    }

    .final-cta-description {
        font-size: 14px;
        line-height: 1.5;
        color: #cbd5e1;
        margin-bottom: 20px;
    }

    .final-cta-btns {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    .btn-cta-green {
        background: var(--cc-primary-green, #287e03);
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 1px solid var(--cc-primary-green, #287e03);
        transition: all 0.3s ease;
    }

    .btn-cta-green:hover {
        background: #216902;
        border-color: #216902;
        color: #ffffff;
        transform: translateY(-1px);
    }

    .btn-cta-outlined {
        background: transparent;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .btn-cta-outlined:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
        color: #ffffff;
        transform: translateY(-1px);
    }

    .final-cta-trust {
        font-size: 14px;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .final-cta-trust .dot-separator {
        color: var(--cc-primary-green, #287e03);
        font-weight: bold;
    }

    /* Right Side: 50% Column with Image */
    .final-cta-right {
        width: 100%;
        height: 100%;
        min-height: 280px;
    }

    .final-cta-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .btn-green-action {
        background: var(--cc-primary-green, #287e03);
        color: #ffffff;
        padding: 10px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14.5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background 0.3s ease;
    }

    .btn-green-action:hover {
        background: #216902;
        color: #ffffff;
    }


    /* Comparison Section Container */
    .compare-plans-section {
        padding: 60px 0;
        background-color: #f9fafb;
        font-family: inherit;
    }

    .compare-title {
        text-align: center;
        font-size: 32px;
        font-weight: 800;
        color: #0f172a;
    }

    .compare-title .highlight-green {
        color: var(--cc-primary-green, #287e03);
    }

    /* Table Container matching reference image card style */
    .table-card-container {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        padding: 20px;
        overflow-x: auto;
    }

    .compare-table {
        width: 100%;
        border-collapse: collapse;
        text-align: center;
    }

    .compare-table th,
    .compare-table td {
        padding: 14px 18px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 14px;
        color: #334155;
    }

    .compare-table th {
        font-size: 15px;
        font-weight: 700;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 16px;
    }

    .compare-table th:first-child,
    .compare-table td:first-child {
        text-align: left;
        font-weight: 600;
        color: #0f172a;
        width: 35%;
    }

    /* Plan Titles in Header */
    .plan-starter-title {
        color: #e11d48;
    }

    .plan-growth-title {
        color: #6366f1;
    }

    .plan-enterprise-title {
        color: #0284c7;
    }

    .compare-table tbody tr:hover {
        background-color: #f8fafc;
    }

    /* Icons */
    .check-icon {
        color: var(--cc-primary-green, #287e03);
        font-size: 16px;
        font-weight: bold;
    }

    .dash-icon {
        color: #cbd5e1;
        font-weight: bold;
    }

    /* Bottom Actions */
    .compare-cta-wrap {
        text-align: center;
        margin-top: 30px;
    }


    /* Section Setup */
    .why-us-section {
        padding: 60px 0;
        background-color: #f8fafc;
        font-family: inherit;
    }

    .why-us-header {
        text-align: center;
        max-width: 650px;
        margin: 0 auto 36px;
    }

    .why-us-header h2 {
        font-size: 28px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 8px;
    }

    .why-us-header .highlight-green {
        color: var(--cc-primary-green, #287e03);
    }

    /* Grid Layout */
    .why-us-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    @media (max-width: 992px) {
        .why-us-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .why-us-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Feature Card Styling */
    .why-us-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 24px;
        gap: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .why-us-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(40, 126, 3, 0.12);
        border-color: var(--cc-primary-green, #287e03);
    }

    /* Badge Icon Container */
    /* .why-us-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(40, 126, 3, 0.1);
        color: var(--cc-primary-green, #287e03);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-bottom: 16px;
    } */

    .why-us-card h3 {
        font-size: 16.5px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .why-us-card p {
        font-size: 13.5px;
        color: #64748b;
        line-height: 1.5;
        margin: 0;
    }



    .industry-section {
        padding: 60px 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: #1a1a1a;
    }

    /* Wrap flex inside container */
    .industry-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        width: 100%;
    }

    .content-left,
    .image-right {
        flex: 1 1 50%;
        width: 50%;
    }

    .content-left h2 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 16px;
        line-height: 1.2;
        color: #0f172a;
    }

    .content-left p {
        font-size: 1rem;
        line-height: 1.6;
        color: #475569;
        margin-bottom: 20px;
    }

    .content-left ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 24px;
    }

    /* Support RTL layout for Arabic */
    [dir="rtl"] .content-left ul {
        padding-left: 0;
        padding-right: 20px;
    }

    .content-left li {
        font-size: 1rem;
        line-height: 1.6;
        color: #334155;
        margin-bottom: 12px;
    }

    .content-left li strong {
        color: #0f172a;
    }

    .cta-button {
        display: inline-block;
        background-color: #2563eb;
        color: #ffffff;
        font-weight: 600;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }

    .cta-button:hover {
        background-color: #1d4ed8;
    }

    /* Image Sizing and Layout Fix */
    .image-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-right img {
        width: 100%;
        max-width: 550px;
        /* Adjust max width as needed */
        height: 400px;
        /* Fixed height for consistent proportion */
        object-fit: cover;
        /* Prevents image stretching */
        border-radius: 12px;
        display: block;
    }

    @media (max-width: 768px) {
        .industry-grid {
            flex-direction: column;
        }

        .content-left,
        .image-right {
            width: 100%;
        }

        .image-right img {
            height: auto;
            /* Reverts to automatic height on mobile screens */
        }
    }





    .pricing-section {
        padding: 60px 20px;
        background-color: #f8fafc;
        font-family: sans-serif;
        color: #1e293b;
    }

    .pricing-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 40px;
    }

    .pricing-badge {
        color: #2563eb;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.875rem;
        margin-bottom: 8px;
    }

    .pricing-header h2 {
        font-size: 2.25rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 16px;
    }

    .pricing-header p {
        color: #64748b;
        font-size: 1rem;
        line-height: 1.6;
    }

    .pricing-toggle-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }

    .pricing-toggle {
        display: inline-flex;
        background-color: #e2e8f0;
        padding: 4px;
        border-radius: 30px;
    }

    .toggle-btn {
        padding: 8px 20px;
        border-radius: 20px;
        border: none;
        background: transparent;
        font-weight: 600;
        cursor: pointer;
        color: #64748b;
        transition: all 0.3s ease;
    }

    .toggle-btn.active {
        background-color: #ffffff;
        color: #0f172a;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .toggle-note {
        margin-top: 12px;
        font-size: 0.875rem;
        color: #64748b;
    }

    /* Cards Layout Container */
    .pricing-cards {
        display: flex;
        justify-content: center;
        align-items: center;
        /* Center-aligns cards so middle can pop vertically */
        gap: 16px;
        margin: 0 auto;
        padding: 20px 0;
    }

    /* Base Pricing Card */
    .pricing-card {
        background: #ffffff;
        border: 1.5px solid #e2e8f0;
        border-radius: 20px;
        padding: 32px 24px;
        flex: 1;
        /* max-width: 370px; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        /* Custom Elevated Box Shadow */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
        transform: scale(0.95);
        transition: all 0.3s ease-in-out;
    }

    /* Hover State: Border Color Change + Box Shadow Boost */
    .pricing-card:hover {
        border-color: #6366f1;
        box-shadow: 0 18px 40px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
        transform: scale(0.97) translateY(-5px);
    }

    /* Featured Middle Card (Larger Size) */
    .pricing-card.popular {
        border: 2px solid #6366f1;
        transform: scale(1.05);
        box-shadow: 0 20px 45px rgba(99, 102, 241, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05);
        z-index: 2;
    }

    .pricing-card.popular:hover {
        transform: scale(1.07) translateY(-5px);
        box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
    }

    .popular-tag {
        position: absolute;
        top: -14px;
        right: 24px;
        background: #6366f1;
        color: #ffffff;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .card-head h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .card-head p {
        font-size: 0.875rem;
        color: #64748b;
        min-height: 40px;
        line-height: 1.4;
    }

    .btn-action {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 10px;
        background-color: #10b981;
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        margin: 20px 0;
        transition: background-color 0.2s ease;
    }

    .btn-action:hover {
        background-color: #059669;
    }

    .pricing-card.popular .btn-action {
        background-color: #6366f1;
    }

    .pricing-card.popular .btn-action:hover {
        background-color: #4f46e5;
    }

    .feature-group-title {
        font-size: 0.875rem;
        font-weight: 700;
        color: #0f172a;
        margin-top: 16px;
        margin-bottom: 12px;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
    }

    .features-list li {
        font-size: 0.875rem;
        color: #334155;
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.4;
    }

    .features-list li i {
        color: #10b981;
        font-size: 0.875rem;
        margin-top: 2px;
    }

    .card-footer-text {
        font-size: 0.8rem;
        color: #64748b;
        border-top: 1px solid #f1f5f9;
        padding-top: 16px;
        margin-top: 20px;
        font-style: italic;
    }

    /* Mobile Responsive reset */
    @media (max-width: 992px) {
        .pricing-cards {
            flex-direction: column;
            align-items: center;
        }

        .pricing-card,
        .pricing-card.popular {
            width: 100%;
            max-width: 500px;
            transform: scale(1);
        }

        .pricing-card:hover,
        .pricing-card.popular:hover {
            transform: translateY(-4px);
        }
    }




    .blog-detail-hero {
        position: relative;
        overflow: hidden;
        /* background: #073b3a; */
    }

    .blog-detail-hero-image {
        display: block;
        width: 100%;
        height: auto;
        opacity: 0.78;
    }

    .blog-detail-hero-content {
        position: absolute;
        inset: 0;
        z-index: 1;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .blog-back-link {
        padding: 10px 16px;
        color: #ffffff;
        background: rgba(7, 59, 58, 0.85);
        border-radius: 6px;
        font-weight: 700;
    }

    .blog-back-link:hover {
        color: #b8f2bd;
    }

    .blog-detail-layout {
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
        gap: 40px;
        align-items: start;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .blog-detail-main {
        min-width: 0;
    }

    .blog-detail-content {
        min-width: 0;
        padding: 60px 40px;
        background: #ffffff;
        border: 1px solid #e2ece5;
        border-radius: 12px;
        box-shadow: 0 14px 35px rgba(8, 122, 29, 0.08);
    }

    .blog-detail-content .blog-detail-title {
        margin: 0 0 28px;
        padding: 0;
        color: #011949;
        font-size: 36px !important;
        font-weight: 700;
        line-height: 1.3 !important;
    }

    .blog-detail-cover {
        display: block;
        width: auto;
        height: auto;
        /* max-height: 420px; */
        margin: 40px 4px;
        object-fit: cover;
        border-radius: 10px;
    }

    .blog-detail-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 18px 0;
        margin-bottom: 24px;
        color: #68756c;
        font-size: 0.9rem;
        border-bottom: 1px solid #e2ece5;
    }

    .blog-detail-meta i {
        margin-right: 6px;
        color: #087a1d;
    }

    .blog-detail-content h2,
    .blog-detail-content h3 {
        position: relative;
        margin-top: 34px;
        margin-bottom: 18px;
        padding: 8px 16px;
        color: #111111;
        background: #fff8f3;
        border-left: 5px solid #034a68;
        border-radius: 8px;
    }

    .blog-detail-content h2::before,
    .blog-detail-content h3::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -5px;
        width: 5px;
        border-radius: 8px 0 0 8px;
        background: linear-gradient(180deg, #011949, #287e03, #003ab8);
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .blog-detail-content h2:hover::before,
    .blog-detail-content h3:hover::before {
        opacity: 1;
    }

    .blog-detail-content h2+p,
    .blog-detail-content h3+p {
        margin-top: 0;
    }

    .blog-detail-content h2 {
        font-size: clamp(1.35rem, 2.5vw, 2rem) !important;
    }

    .blog-detail-content h3 {
        font-size: clamp(1.15rem, 2vw, 1.55rem) !important;
    }

    .blog-detail-content p,
    .blog-detail-content li {
        color: #56635a !important;
        font-size: 1.05rem !important;
        line-height: 1.9 !important;
    }

    .blog-detail-content p {
        margin: 0 0 20px;
    }

    .crm-process-example {
        margin: 28px auto;
        padding: 22px 20px;
        max-width: 620px;
        text-align: center;
        background: #f3f8f4;
        border: 1px solid #dce7e0;
        border-radius: 8px;
    }

    .blog-detail-content .crm-process-example p {
        margin: 0;
        color: #073b3a !important;
    }

    .blog-detail-content .crm-process-example .crm-process-label {
        margin-bottom: 14px;
        color: #034a68 !important;
    }

    .blog-detail-content .crm-process-example .crm-process-arrow {
        margin: 5px 0;
        color: #287e03 !important;
        font-size: 1.35rem !important;
        line-height: 1.2 !important;
    }

    .blog-detail-content a {
        color: #287e03;
        font-weight: 600;
    }

    .blog-detail-content a:hover {
        color: #1f6202;
    }

    .blog-detail-content .blog-lead {
        margin: 0 0 22px;
        color: #56635a  !important;
        /* font-size: 1.2rem !important; */
        /* font-weight: 600 !important; */
    }

    .blog-detail-content .blog-lead::first-letter {
        float: left;
        margin: 4px 8px 0 0;
        color: #034a68;
        font-size: 4.2rem !important;
        font-weight: 700;
        line-height: 0.78 !important;
    }

    .blog-detail-content ul {
        margin: 12px 0 28px;
        padding: 0;
    }

    .blog-detail-content li {
        position: relative;
        padding: 12px 15px 12px 45px;
        margin-bottom: 8px;
        color: #58718f !important;
        background: #f8f9fa;
        border-radius: 10px;
        list-style: none;
        transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    }

    .blog-detail-content li:hover {
        background: #eaf7e8;
        box-shadow: 0 6px 14px rgba(8, 122, 29, 0.12);
        transform: scale(1.02);
    }

    .blog-detail-content li::before {
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 12px;
        top: 13px;
        width: 18px;
        height: 18px;
        color: #ffffff;
        background: #034a68;
        border-radius: 50%;
        font-size: 12px;
        /* font-weight: 700; */
        line-height: 18px;
        text-align: center;
    }

    .blog-detail-table-wrap {
        width: 100%;
        margin: 22px 0 28px;
        overflow-x: auto;
    }

    .blog-detail-table {
        width: 100%;
        min-width: 680px;
        border-collapse: collapse;
        color: #56635a;
        font-size: 0.98rem !important;
        line-height: 1.6 !important;
        table-layout: fixed;
    }

    .blog-detail-table th,
    .blog-detail-table td {
        padding: 14px 16px;
        text-align: left;
        vertical-align: top;
        border: 1px solid #dce7e0;
        overflow-wrap: anywhere;
    }

    .blog-detail-table thead th {
        color: #ffffff;
        background: #034a68;
        font-weight: 700;
    }

    .blog-detail-table tbody th {
        width: 22%;
        color: #073b3a;
        background: #f3f8f4;
        font-weight: 700;
    }

    .blog-detail-table tbody tr:nth-child(even) td {
        background: #fbfdfb;
    }

    .blog-detail-callout {
        margin: 28px 0;
        padding: 18px 20px;
        color: #073b3a;
        background: #effaf0;
        border-left: 4px solid #087a1d;
        border-radius: 6px;
    }

    .blog-detail-faq {
        margin-top: 32px;
        padding: 0;
        background: transparent;
    }

    .blog-detail-sidebar {
        position: sticky;
        top: 110px;
        display: grid;
        gap: 24px;
    }

    .blog-sidebar-box {
        padding: 24px;
        background: #ffffff;
        border: 1px solid #e2ece5;
        border-radius: 12px;
        box-shadow: 0 14px 35px rgba(8, 122, 29, 0.08);
    }

    .blog-sidebar-box h2 {
        margin-bottom: 18px;
        color: #073b3a;
        font-size: 1.35rem;
    }

    .blog-sidebar-post {
        display: flex;
        align-items: center;
        gap: 14px;
        color: #073b3a;
        font-weight: 700;
        line-height: 1.4;
        padding: 12px 0;
        border-bottom: 1px solid #e2ece5;
    }

    .blog-sidebar-post:first-child {
        padding-top: 0;
    }

    .blog-sidebar-post:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .blog-sidebar-post-content {
        display: grid;
        gap: 8px;
        min-width: 0;
    }

    .blog-sidebar-post-title {
        font-size: 0.98rem;
    }

    .blog-sidebar-post-date {
        color: #6b7280;
        font-size: 0.78rem;
        font-weight: 400;
    }

    .blog-sidebar-post-date i {
        color: #ff6b00;
        margin-right: 5px;
    }

    .blog-sidebar-post img {
        width: 82px;
        height: 72px;
        flex: 0 0 auto;
        object-fit: cover;
        border-radius: 8px;
    }

    .blog-sidebar-contact {
        background: #011949;
        text-align: center;
    }

    .blog-sidebar-contact .blog-detail-eyebrow {
        color: #b8f2bd !important;
    }

    .blog-sidebar-contact h2,
    .blog-sidebar-contact p:not(.blog-detail-eyebrow) {
        color: #ffffff !important;
    }

    .blog-sidebar-contact .btn {
        margin-top: 10px;
        display: inline-flex;
    }

    @media (max-width: 800px) {
        .blog-detail-hero-content {
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .blog-back-link {
            padding: 7px 11px;
            font-size: 13px;
        }

        .blog-detail-layout {
            grid-template-columns: 1fr;
            gap: 28px;
            padding-top: 32px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .blog-detail-sidebar {
            position: static;
        }
    }

    @media (max-width: 767px) {
        .blog-detail-hero-content {
            position: static;
            padding: 10px 20px 0;
        }

        .blog-back-link {
            color: #287e03;
            background: transparent;
            padding: 0;
        }

        .blog-back-link:hover {
            color: #1f6202;
        }
    }

    @media (max-width: 520px) {

        .blog-detail-content,
        .blog-sidebar-box {
            padding: 18px;
        }

        .blog-detail-hero {
            padding: 0;
        }

        .blog-detail-content .blog-detail-title {
            margin-bottom: 22px;
            font-size: 28px !important;
            line-height: 1.3 !important;
        }

        .blog-detail-content h2,
        .blog-detail-content h3 {
            margin-top: 28px;
            margin-bottom: 14px;
            padding: 8px 12px;
        }

        .blog-detail-content {
            padding: 32px 24px;
        }

        .blog-detail-cover {
            width: 100%;
            height: auto;
            margin: 24px 0;
        }

        .blog-detail-meta {
            gap: 12px;
            padding: 14px 0;
            margin-bottom: 20px;
        }

        .blog-detail-content p,
        .blog-detail-content li {
            font-size: 1rem !important;
            line-height: 1.75 !important;
        }

        .blog-detail-content .blog-lead {
            font-size: 1.1rem !important;
        }

        .blog-detail-content li {
            transform: none;
        }

        .blog-detail-content li:hover {
            transform: none;
        }

        .blog-detail-table-wrap {
            margin: 18px -8px 24px;
            padding: 0 8px 6px;
            -webkit-overflow-scrolling: touch;
        }

        .blog-detail-table {
            min-width: 560px;
            font-size: 0.88rem !important;
            line-height: 1.5 !important;
        }

        .blog-detail-table th,
        .blog-detail-table td {
            padding: 10px;
        }

        .blog-detail-faq .faq-question {
            padding: 14px 16px;
            font-size: 14px;
        }

        .blog-detail-faq .faq-answer-content {
            padding: 16px;
            font-size: 14px;
            line-height: 1.7;
        }
    }