:root {
    --primary-blue: #1d4ed8;
    --primary-hover: #1e40af;
    --brand-blue: #1e4ced;
    --dark-heading: #1B1B23;
    --muted-text: #475569;
    --bg-light: #F5F6FB;
    --border-light: #EEF0F9;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-main);
   
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin: 0;
}


.marquee-inner {
    color: white;
}
        
    .doc-spacing {
        margin-top: 19vh !important;
    }

    /* ═══════════════════════════════════════════════════
           TOP BAR
        ═══════════════════════════════════════════════════ */
    .top-bar {
        background: #2b3bea;
        font-size: 13px;
        padding: 6px 0;
        color: #fffff;
        position: relative;
        z-index: 1100;
    }

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .marquee {
        width: 70%;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .marquee-inner {
        display: inline-block;
        white-space: nowrap;
        padding-left: 100%;
        animation: marquee 30s linear infinite;
        font-weight: 500;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /* Globe button */
    .globe-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #cbd5e1;
        background: #fff !important;
        color: #1a2b49 !important;
        font-size: 13px;
        cursor: pointer;
        position: relative;
        z-index: 1;
        transition: all .25s cubic-bezier(.4, 0, .2, 1);
        flex-shrink: 0;
    }

    .globe-btn::after {
        display: none !important;
    }

    .globe-btn:hover {
        background: #e2e5fc !important;
        border-color: var(--primary-blue);
        color: #2041E2 !important;
    }

    /* top-bar dropdown */
    .top-bar .dropdown-menu {
        margin-top: 8px !important;
        border-radius: 12px !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .10) !important;
        z-index: 1070 !important;
        min-width: 150px;
        padding: 6px !important;
    }

    .top-bar .dropdown-item {
        font-size: 13px;
        font-weight: 600;
        padding: 7px 12px;
        border-radius: 8px;
        transition: all .2s;
    }

    .top-bar .dropdown-item:hover {
        background: #e2e5fc;
        color: var(--primary-blue);
    }

    .login-link {
        color: #ffffff !important;
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
        white-space: nowrap;
        transition: all .2s;
    }

    .login-link:hover {
        color: #2041E2 !important;
        text-decoration: underline;
    }

    /* ═══════════════════════════════════════════════════
           STICKY HEADER WRAPPER
        ═══════════════════════════════════════════════════ */
    .header-wrap {
        background: rgba(255, 255, 255, 0);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 10px 0;
        transition: all .25s cubic-bezier(.4, 0, .2, 1);
    }

    .main-header {
        background: #fff;
        border-radius: 50px;
        padding: 6px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
        border: 1px solid rgba(0, 0, 0, .04);
        position: relative;
    }

    /* Logo — never squeeze, never hide */
    .logo-img {
        max-height: 40px;
        width: auto;
        min-width: 80px;
        object-fit: contain;
        flex-shrink: 0;
        display: block;
    }






    /* ═══════════════════════════════════════════════════
           NAV LINKS  (shared base)
        ═══════════════════════════════════════════════════ */
    .navbar-nav .nav-link {
        color: #1a2b49 !important;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 14px !important;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        transition: all .22s cubic-bezier(.4, 0, .2, 1);
        position: relative;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-blue) !important;
        background: #e2e5fc;
    }

    /* Chevron */
    .nav-caret {
        font-size: 10px;
        color: #94a3b8;
        transition: transform .25s cubic-bezier(.4, 0, .2, 1), color .2s;
        flex-shrink: 0;
        margin-left: auto;
    }

    .partner-lnk {
        color: var(--primary-blue) !important;
    }

    .hardware-lnk {
        color: #d97706 !important;
    }

    /* ── CTA buttons (shared base) ── */
    .call-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e2e5fc !important;
        color: var(--primary-blue) !important;
        border: none;
        text-decoration: none;
        flex-shrink: 0;
        transition: all .22s cubic-bezier(.4, 0, .2, 1);
    }

    .call-btn:hover {
        background: var(--primary-blue) !important;
        color: #fff !important;
        transform: scale(1.05);
    }

    .demo-btn {
        background: #2041E2 !important;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        border: 1px solid transparent;
        transition: all .22s cubic-bezier(.4, 0, .2, 1);
    }

    .demo-btn:hover {
        background: #fff !important;
        color: #2041E2 !important;
        border-color: #2041E2;
        box-shadow: 0 4px 12px rgba(159, 32, 140, .2);
    }

    /* ═══════════════════════════════════════════════════════════════════
           DESKTOP  ≥ 1200px  (navbar-expand-xl breakpoint)
           No jumping, no squeezing at any width above 1200px.
        ═══════════════════════════════════════════════════════════════════ */
    @media (min-width: 1200px) {
        .navbar-nav .nav-item {
            position: relative;
        }

        .navbar-nav .nav-item.has-mega {
            position: static;
        }

        /* Rotate chevron + colour nav link on hover */
        .navbar-nav .nav-item:hover>.nav-link .nav-caret,
        .navbar-nav .nav-item.company-item:hover>.nav-link .nav-caret {
            transform: rotate(180deg);
            color: var(--primary-blue);
        }

        .navbar-nav .nav-item:hover>.nav-link,
        .navbar-nav .nav-item.company-item:hover>.nav-link {
            color: var(--primary-blue) !important;
            background: #e2e5fc;
        }

        /* ──── Desktop megamenu ──── */
        .dropdown-menu.megamenu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(12px);
            width: 92vw;
             max-width:800px;

            border: 1px solid #e2e8f0;
            box-shadow: 0 14px 40px rgba(0, 0, 0, .10);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            background: #fff;
            opacity: 0;
            visibility: hidden;
            display: block !important;
            pointer-events: auto;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 99999;
        }

        .navbar-nav .nav-item.has-mega:hover .dropdown-menu.megamenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .mega-wrap {
            grid-template-columns: 270px 1fr;
            min-height: 250px;
        }

        .mega-sidebar {
            background: #f8fafc;
            border-right: 1px solid #e2e8f0;
            padding: 25px 15px 15px 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mega-tab-btn {
            width: 100%;
            text-align: left;
            padding: 11px 13px;
            border-radius: 12px;
            border: 1px solid transparent;
            background: transparent;
            cursor: pointer;
            transition: all .2s;
        }

        .mega-tab-btn:hover {
            background: #fff !important;
            border-color: #e2e8f0 !important;
        }

        .mega-tab-btn.active {
            background: #fff !important;
            border-color: #e2e8f0 !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
        }

        .mega-tab-btn h5 {
            font-size: 13.5px !important;
            font-weight: 700 !important;
            margin: 0 0 2px !important;
            text-align: left !important;
            color: #1a2b49 !important;
        }

        .mega-tab-btn.active h5 {
            color: var(--primary-blue) !important;
        }

        .mega-tab-btn p {
            font-size: 11px !important;
            color: #64748b !important;
            margin: 0;
            line-height: 1.35;
        }

        .mega-body {
            padding: 22px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .mega-panel {
            display: none;
            animation: fadeUp .18s ease;
        }

        .mega-panel.active {
            display: block;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .sol-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .sol-card {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 9px 12px;
            border-radius: 10px;
            text-decoration: none;
            color: #1a2b49;
            transition: all .2s;
        }

        .sol-card:hover {
            background: #e2e5fc;
            transform: translateY(-1px);
        }

        .sol-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: #f1f5f9;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            flex-shrink: 0;
            transition: all .2s;
        }

        .sol-card:hover .sol-icon {
            background: var(--primary-blue);
            color: #fff;
        }

        .sol-title {
            font-size: 12.5px;
            font-weight: 600;
            line-height: 1.3;
        }

        .subtabs-bar {
            display: flex;
            gap: 8px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 12px;
            margin-bottom: 14px;
        }

        .subtab-btn {
            background: #f1f5f9 !important;
            border: none !important;
            padding: 5px 13px;
            border-radius: 14px !important;
            font-size: 12px;
            font-weight: 600;
            color: #64748b !important;
            cursor: pointer;
            transition: all .2s;
        }

        .subtab-btn.active,
        .subtab-btn:hover {
            background: #2041E2;
            color: #fff;
        }

        .subtab-pane {
            display: none;
        }

        .subtab-pane.active {
            display: block;
        }

        .mega-footer {
            margin-top: 18px;
            border-top: 1px solid #f1f5f9;
            padding-top: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sales-note {
            font-size: 12px;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .sales-note strong {
            color: #1a2b49;
        }

        .sales-note a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .outline-btn {
            border: 1px solid #e2e8f0;
            color: #1a2b49;
            padding: 6px 14px;
            border-radius: 14px;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            background: #fff;
            transition: all .2s;
            white-space: nowrap;

        }

        .outline-btn:hover {
            border-color: var(--primary-blue);
            background: #e2e5fc;
            color: var(--primary-blue);
        }

        /* ──── Desktop Company hover dropdown ──── */
        .navbar-nav .nav-item.company-item {
            position: relative;
        }

        .navbar-nav .nav-item.company-item .co-menu {
            position: absolute;
            top: 40px;
            right:10;
            left: auto;
            min-width: 210px;
            border: 1px solid #e8f0e8;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
            border-radius: 14px;
            padding: 8px;
            background: #fff;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            display: block !important;
            pointer-events: none;
            transition: opacity .35s ease, transform .35s ease, visibility .35s;
            z-index: 1200;
        }

        .navbar-nav .nav-item.company-item:hover .co-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
            top: 100%;
            margin-top: 0;
        }

        .navbar-nav .nav-item.company-item {
            position: relative;
        }



        .co-menu .co-item {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px 13px;
            border-radius: 9px;
            text-decoration: none;
            color: #1a2b49;
            font-size: 13px;
            font-weight: 600;
            transition: all .2s;
        }

        .co-menu .co-item i {
            color: var(--primary-blue);
            width: 16px;
            text-align: center;
        }

        .co-menu .co-item:hover {
            background: #e2e5fc;
            color: var(--primary-blue);
        }

        /* ──── Desktop Submenu for .co-item ──── */
        .co-menu .has-co-submenu {
            position: relative;
        }

        .co-menu .has-co-submenu .co-caret {
            font-size: 10px;
            margin-left: auto;
            color: #94a3b8;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .co-menu .has-co-submenu:hover>.co-item .co-caret {
            transform: translateX(3px);
            color: var(--primary-blue);
        }

        .co-submenu {
            position: absolute;
            top: 0;
            left: 100%;
            margin-left: 6px;
            min-width: 200px;
            background: #fff;
            border: 1px solid #e8f0e8;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
            border-radius: 14px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-8px);
            transition: opacity .25s ease, transform .25s ease, visibility .25s;
            z-index: 1250;
            list-style: none;
        }

        .co-menu .has-co-submenu:hover>.co-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .co-submenu .co-subitem {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 8px 12px;
            border-radius: 8px;
            text-decoration: none;
            color: #1a2b49;
            font-size: 12.5px;
            font-weight: 600;
            transition: all .2s;
        }

        .co-submenu .co-subitem i {
            color: var(--primary-blue);
            width: 16px;
            text-align: center;
        }

        .co-submenu .co-subitem:hover {
            background: #e2e5fc;
            color: var(--primary-blue);
        }

        /* Hide mobile-only elements on desktop */
        .mob-panel,
        .mob-co-panel {
            display: none !important;
        }
    }

    @media (min-width: 1200px) and (max-width: 1380px) {
        .main-header {
            padding: 6px 12px;
        }

        .navbar-nav .nav-link {
            font-size: 13px;
            padding: 7px 9px !important;
            gap: 4px;
        }

        .call-btn {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }

        .demo-btn {
            font-size: 12px;
            padding: 8px 14px;
            gap: 6px;
        }

        .logo-img {
            max-height: 36px;
        }
    }

    /* ═══════════════════════════════════════════════════
           MOBILE / TABLET  ≤ 1199px
        ═══════════════════════════════════════════════════ */
    @media (max-width: 1199px) {
        .top-bar {
            padding: 7px 0;
        }

        .top-bar .container {
            padding-left: 12px !important;
            padding-right: 12px !important;
        }

        .marquee {
            width: 55% !important;
        }

        .main-header {
            border-radius: 18px;
            padding: 8px 14px;
        }

        .logo-img {
            max-height: 34px;
            min-width: 100px;
        }

        .navbar-toggler {
            border: none;
            padding: 0;
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #e2e5fc;
            color: var(--primary-blue);
            border-radius: 8px;
            flex-shrink: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* ── Offcanvas ── */
        .offcanvas.offcanvas-start {
            width: min(90vw, 320px) !important;
            border-right: 0;
            box-shadow: 15px 0 40px rgba(0, 0, 0, .14);
            height: 100vh;
        }

        .offcanvas-header {
            background: #fff;
            border-bottom: 1px solid #f1f5f9;
            padding: 14px 16px;
            flex-shrink: 0;
        }

        .offcanvas-body {
            padding: 10px 12px !important;
            background: #f5f7fa;
            overflow-y: auto !important;
            overflow-x: hidden !important;
            flex: 1 1 auto;
            min-height: 0;
        }

        /* nav list */
        .navbar-nav {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding-bottom: 16px;
        }

        /* Every nav-link is a white card on mobile */
        .navbar-nav .nav-link {
            padding: 12px 14px !important;
            border-radius: 10px;
            background: #fff;
            border: 1px solid #eef1f5;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            white-space: normal;
        }

        .navbar-nav .nav-link:hover {
            background: #e2e5fc;
            border-color: rgba(159, 32, 140, .25);
            color: var(--primary-blue) !important;
        }

        /* Chevron for dropdown triggers */
        .mob-trigger .nav-caret {
            font-size: 11px;
            transition: transform .25s cubic-bezier(.4, 0, .2, 1), color .2s;
            color: #94a3b8;
        }

        .mob-trigger.is-open>.nav-link .nav-caret {
            transform: rotate(180deg);
            color: var(--primary-blue);
        }

        .mob-trigger.is-open>.nav-link {
            color: var(--primary-blue) !important;
            background: #e2e5fc;
            border-color: rgba(159, 32, 140, .25);
        }

        /* Hide desktop megamenu panel on mobile */
        .dropdown-menu.megamenu {
            display: none !important;
        }

        /* ── Mobile accordion panel ── */
        .mob-panel {
            display: none;
            margin-top: 4px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #e5eaf0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
            overflow: hidden;
        }

        .mob-panel.is-open {
            display: block;
        }

        .mob-section {
            padding: 12px;
            border-bottom: 1px solid #f0f3f7;
        }

        .mob-section:last-child {
            border-bottom: none;
        }

        .mob-section-head {
            font-size: 9.5px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: #94a3b8;
            margin-bottom: 9px;
            padding-left: 8px;
            border-left: 3px solid var(--primary-blue);
            line-height: 1;
            display: block;
        }

        .mob-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 6px;
        }

        .mob-item {
            display: flex;
            align-items: center;
            gap: 7px;
            background: #f8fafc;
            border: 1px solid #eef1f5;
            border-radius: 9px;
            padding: 8px 8px;
            text-decoration: none;
            color: #1a2b49;
            min-width: 0;
            overflow: hidden;
            transition: all .2s;
        }

        .mob-item:hover {
            background: #e2e5fc;
            border-color: rgba(159, 32, 140, .3);
            color: var(--primary-blue);
        }

        .mob-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            border-radius: 7px;
            background: #e2e5fc;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
            transition: all .2s;
        }

        .mob-item:hover .mob-icon {
            background: var(--primary-blue);
            color: #fff;
        }

        .mob-label {
            font-size: 11px;
            font-weight: 600;
            line-height: 1.3;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            min-width: 0;
            text-transform: uppercase;
        }

        /* ── Mobile Company panel ── */
        .mob-co-panel {
            display: none;
            margin-top: 4px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #e5eaf0;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
        }

        .mob-co-panel.is-open {
            display: block;
        }

        .mob-co-panel a {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 11px 14px;
            font-size: 13px;
            font-weight: 600;
            color: #1a2b49;
            text-decoration: none;
            border-bottom: 1px solid #f0f3f7;
            transition: all .2s;
        }

        .mob-co-panel a:last-child {
            border-bottom: none;
        }

        .mob-co-panel a:hover {
            background: #e2e5fc;
            color: var(--primary-blue);
        }

        .mob-co-panel a i {
            color: var(--primary-blue);
            width: 16px;
            text-align: center;
        }

        /* Mobile Submenu for .mob-co-panel */
        .mob-co-item-wrap {
            border-bottom: 1px solid #f0f3f7;
        }

        .mob-co-item-wrap:last-child {
            border-bottom: none;
        }

        .mob-co-parent {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 11px 14px;
            font-size: 13px;
            font-weight: 600;
            color: #1a2b49;
            text-decoration: none;
            transition: all .2s;
            cursor: pointer;
        }

        .mob-co-parent .mob-co-caret {
            font-size: 10px;
            color: #94a3b8;
            transition: transform 0.25s ease, color 0.2s ease;
        }

        .mob-co-item-wrap.is-open .mob-co-parent {
            color: var(--primary-blue);
            background: #e2e5fc;
        }

        .mob-co-item-wrap.is-open .mob-co-caret {
            transform: rotate(180deg);
            color: var(--primary-blue);
        }

        .mob-co-subpanel {
            display: none;
            background: #f8fafc;
            border-top: 1px solid #f0f3f7;
        }

        .mob-co-item-wrap.is-open .mob-co-subpanel {
            display: block;
        }

        .mob-co-subpanel a {
            padding: 9px 14px 9px 28px !important;
            font-size: 12px !important;
            color: #475569 !important;
        }

        .mob-co-subpanel a:hover {
            color: var(--primary-blue) !important;
            background: #e2e5fc !important;
        }

        /* Mobile header action buttons */
        .mob-actions {
            display: flex !important;
            align-items: center;
            gap: 8px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .mob-actions .call-btn {
            width: 36px;
            height: 36px;
        }

        .mob-actions .demo-btn {
            padding: 0 12px;
            height: 36px;
            border-radius: 20px;
            font-size: 12px;
            gap: 5px;
        }

        /* Company hover menu hidden on mobile */
        .co-menu {
            display: none !important;
        }
    }

    /* Tiny phones: collapse "Book Demo" text to icon-only */
    @media (max-width: 480px) {
        .mob-actions .demo-btn span {
            display: none !important;
        }

        .mob-actions .demo-btn {
            width: 36px;
            padding: 0 !important;
            justify-content: center;
            border-radius: 50% !important;
        }

        .mob-actions .demo-btn i {
            margin: 0 !important;
            font-size: 15px;
        }

        .marquee {
            width: 60% !important;
        }
    }

    .rs-tut-mega-wrap,
    .rs-tut-mega-panel,
    .rs-tut-mega-tab-btn {
        pointer-events: auto !important;
    }

    .insustries-dropdown {
        max-width: 800px !important;
    }

    /* Hero Showcase Preview Styles */
    .hero-section {
        background: radial-gradient(circle at 10% 20%, rgba(159, 32, 140, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
        padding: 100px 0 80px 0;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(32px, 5vw, 56px);
        font-weight: 800;
        color: #1a2b49;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: clamp(16px, 2vw, 20px);
        color: #64748b;
        max-width: 650px;
        margin: 0 auto 40px auto;
    }

    .showcase-badge {
        background: #e2e5fc;
        color: #2041E2;
        padding: 8px 16px;
        border-radius: 30px;
        font-weight: 700;
        font-size: 14px;
        display: inline-block;
        margin-bottom: 24px;
    }

    #video-iframe-container {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 28px;
        overflow: hidden;
    }

    #video-iframe-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    .responsive-video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 28px;
    }

    .video-wrapper {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
    }

    /* InfinityHub Apps Button & Dropdown */
    .ih-apps-grid-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1.5px solid #3b82f6;
        color: #3b82f6;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    /*.ih-apps-grid-btn:hover {*/
    /*    color: #2563eb;*/
    /*}*/

    .ih-apps-grid-btn svg path {
        transition: stroke .2s ease, stroke-opacity .2s ease;
    }

    .ih-apps-grid-btn:hover svg path {
        stroke: #1b2f6b;
        /* Raseed green, swap for whatever you want */
        stroke-opacity: 1;



    }


    .ih-apps-grid-btn:hover svg {

        fill: #2563eb;

    }

    /* Remove default dropdown toggle caret */
    .ih-apps-grid-btn::after {
        display: none !important;
    }

    .ih-apps-dropdown-menu {
        width: 380px;
        padding: 24px;
        border-radius: 20px !important;
        border: 1px solid #e2e8f0 !important;
        margin-top: 15px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    }

    .ih-apps-dropdown-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f1f5f9;
    }

    .ih-apps-title {
        font-size: 11px;
        font-weight: 800;
        color: #94a3b8;
        letter-spacing: 0.5px;
    }

    .ih-apps-view-all {
        font-size: 12px;
        font-weight: 700;
        color: #3b82f6;
        text-decoration: none;
        transition: color 0.2s;
    }

    .ih-apps-view-all:hover {
        color: #2563eb;
    }

    .ih-apps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 15px;
    }

    .ih-app-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        gap: 10px;
        transition: transform 0.2s ease;
    }

    .ih-app-item:hover {
        transform: translateY(-3px);
    }

    .ih-app-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .ih-app-name {
        font-size: 13px;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .logo-divider {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-right: 14px;
        position: relative;
    }

    @media (max-width: 400px) {
        .logo-divider {
            padding-right: 10px;
        }

        .logo-img {
            max-height: 30px;
            min-width: 80px;
        }

        .mob-actions {

            margin-left: 5px !important;

        }
    }

    .logo-divider::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 24px;
        /* shorter than the 22px image height */
        background-color: #dcdcdc;
    }

    /* App Icon Colors */
    .ih-bg-light-green {
        background-color: #e2e5fc !important;
    }

    .ih-text-green {
        color: #2041E2 !important;
    }

    .ih-bg-light-cyan {
        background-color: #e3fafc !important;
    }

    .ih-text-cyan {
        color: #1098ad !important;
    }

    .ih-bg-light-yellow {
        background-color: #fff9db !important;
    }

    .ih-text-yellow {
        color: #f59f00 !important;
    }

    .ih-bg-light-blue {
        background-color: #e7f5ff !important;
    }

    .ih-text-blue {
        color: #3b82f6 !important;
    }

    .ih-bg-light-red {
        background-color: #ffe3e3 !important;
    }

    .ih-text-red {
        color: #fa5252 !important;
    }

    .ih-bg-light-purple {
        background-color: #f3f0ff !important;
    }

    .ih-text-purple {
        color: #845ef7 !important;
    }

    .header-wrap {
        position: absolute;
        right: 0;
        left: 0;
        top: auto;
        z-index: 1000;
        transition: all .25s cubic-bezier(.4, 0, .2, 1);
        background: transparent !important;

    }

    .header-wrap.is-scrolled {
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all .25s cubic-bezier(.4, 0, .2, 1);
        background: transparent !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;

    }





    /* Store Buttons (Premium Badges) */
    .store-stack {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;

    }

    .store-badge {
        display: flex;
        align-items: center;
        background-color: #000;
        color: #fff;
        padding: 8px 16px;
        border-radius: 8px;
        text-decoration: none !important;
        width: 180px;
        height: 52px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.2s, background-color 0.2s;
    }

    .store-badge:hover {
        background-color: #222;
        transform: translateY(-2px);
        color: #fff;
    }

    .store-badge .badge-icon {
        font-size: 24px;
        margin-right: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
    }

    .store-badge .badge-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .store-badge .badge-text span {
        font-size: 9px;
        text-transform: uppercase;
        font-weight: 500;
        opacity: 0.8;
    }

    .store-badge .badge-text strong {
        font-size: 15px;
        font-weight: 700;
    }

    /* PC Badge specific */
    .pc-badge .badge-icon i {
        color: #fff;
    }

    /* Play Store specific - using multicolored icon look via CSS/FontAwesome */
    .play-badge .badge-icon i {
        background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* App Store specific */
    .app-badge .badge-icon i {
        color: #fff;
    }

    /* CRM HUB 360 LOGO */
    .crm-hub-footer {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
        padding-top: 20px;
    }

    .crm-hub-logo-img {
        height: 38px;
        width: auto;
    }

    .crm-hub-text-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* CRM HUB 360 LOGO */
    .crm-hub-footer {
        display: flex;
        align-items: center;
        margin-top: 35px;
        padding-top: 10px;
        border: 2px solid red;
    }

    .crm-hub-logo-img {
        max-width: 280px;
        /* Adjust based on logo proportions */
        height: auto;
        max-height: 60px;
        display: block;
    }

    /* Social Icons Row */
    .social-row {
        display: flex;
        gap: 15px;
        padding: 0;
        list-style: none;
        margin-bottom: 25px !important;
    }

    .social-row li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        transition: all 0.3s ease;
        color: #fff !important;
    }

    .social-row li a i {
        font-size: 18px;
        margin: 0 !important;
    }

    .social-row li a:hover {
        background-color: #2041E2;
        transform: translateY(-3px);
        color: #fff !important;
    }

    @media (max-width: 768px) {
        .store-stack {
            align-items: center;
        }

        .crm-hub-footer {
            justify-content: center;
        }
    }

    /* Bottom */
    .bottom {
        background: #2041E2;
        padding: 15px 0;
        font-size: 14px;
    }

    .oran {
        display: flex;
        gap: 10px;
        margin: 0;
    }

    /* Responsive Fix */
    @media (max-width:768px) {
        .contact-item {
            flex-direction: column;
        }

        .ras img {
            max-width: 220px;
        }

        .oran {
            justify-content: center;
            margin-top: 15px;
        }
    }

    /* ===== MULTI-PLATFORM SECTION ===== */
    .platform-section {
        padding: 40px 0;
        background-color: #ffffff;
        text-align: center;
    }

    .platform-title {
        color: #0b1c3e;
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .platform-subtitle {
        color: #4b5563;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .platform-card {
        background-color: #f9fafb;
        border: 1px solid #f3f4f6;
        border-radius: 12px;
        padding: 24px 20px;
        height: 100%;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: inherit;
    }

    .platform-card:hover {
        background-color: #a3c2ff !important;
        transform: translateY(-5px);
    }


    .platform-icon {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #00A389;
    }


    .platform-name {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }

    .platform-desc {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #6b7280;
    }



    @media (max-width: 991px) {
        .platform-card {
            margin-bottom: 2rem;
        }
    }

    .rsd-flag-icon {
        width: 2.15em;
        height: 2.15em;
        flex-shrink: 0;
        vertical-align: middle;
    }





  
  

    /* Desktop */
    .badge-img {
        width: 120px;
        height: 40px;
        object-fit: contain;
    }

    /* Tablet */
    @media (max-width:991px) {
        .badge-img {
            width: 70px;
            height: 30px;
        }
    }

    /* Mobile */
    @media (max-width:576px) {
        .badge-img {
            width: 60px;
            height: 30px;
        }
        
        
        
        
        
        
    }
    
    
    
  

@media (max-width: 680px){

.fck-3{

  width:100% !important;   
}

}

/* Footer Container with Top Blue Accent Line */
.ihp-footer {
    background-color: #ffffff;
    border-top: 3px solid #2563eb;
    color: #475569;
}

/* Brand Section */
.ihp-brand-desc {
    color: #64748b;
    font-size: 0.925rem;
    line-height: 1.5;
    max-width: 320px;
}

/* Headings */
.ihp-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
}

/* Nav Links */
.ihp-footer-links li {
    margin-bottom: 0.65rem;
}

.ihp-footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease-in-out;
}

.ihp-footer-links a:hover {
    color: #2563eb;
}

/* App Download Badges */
.ihp-store-badge img {
    border-radius: 6px;
    transition: opacity 0.2s ease-in-out;
}

.ihp-store-badge:hover img {
    opacity: 0.85;
}

/* Get In Touch Pill Button */
.ihp-touch-pill {
    display: inline-block;
    padding: 8px 22px;
    background-color: #e8f0fe;
    color: #2563eb;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.ihp-touch-pill:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* NEED SUPPORT Massive Banner */
.ihp-support-strip {
    padding: 10px 0;
    transition: opacity 0.2s ease-in-out;
}

.ihp-support-strip:hover {
    opacity: 0.9;
}

.ihp-support-text {
    font-size: clamp(2.5rem, 8vw, 6.25rem);
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.ihp-support-arrow-btn img{
    height:auto;
    width:80px;
    color: #ffffff;
    border-radius: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.ihp-support-strip:hover .ihp-support-arrow-btn {
    transform: scale(1.05) rotate(5deg);
}

/* Bottom Legal Bar */
.ihp-footer-bottom {
    border-color: #f1f5f9 !important;
}

.ihp-copyright {
    color: #64748b;
    font-size: 0.875rem;
}

.ihp-legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

.ihp-legal-links a:hover {
    color: #2563eb;
}

.ihp-legal-sep {
    color: #cbd5e1;
    font-size: 0.875rem;
}    
    
    
    
    
