





/* Hide Call & Book Demo buttons on 320px–400px screens */
@media (min-width:320px) and (max-width:400px){

    .mob-actions .call-btn,
    .mob-actions .demo-btn{
        display:none !important;
    }

    .mob-actions{
        justify-content:flex-end;
    }

    .mob-actions .navbar-toggler{
        display:flex !important;
    }

}   

        
        /* ═══════════════════════════════════════════════════
           ROOT VARIABLES & GENERAL STYLING
        ═══════════════════════════════════════════════════ */
        
        .border-end{
  border-right: var(--bs-border-width) var(--bs-border-style) #dedede75 !important;
}
        
        
        /* Mobile */
@media (max-width:767px){

    .contact-box{
        padding:15px 0;
    }

    .contact-box .col-md-4{
        padding:20px !important;
        border-right:none !important;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .contact-box .col-md-4:last-child{
        border-bottom:none;
    }

    .contact-item .fa-phone{
        margin-top:14px;
    }

}

        
        :root {
            --green: #007031;
            --green-lite: #1aa64b;
            --green-soft: #eaf7ef;
            --navy: #1a2b49;
            --footer-bg: #1a3a6d;
            --ease: cubic-bezier(.4, 0, .2, 1);

        }

        body {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            background: #fdfdfd;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* ═══════════════════════════════════════════════════
           TOP BAR
        ═══════════════════════════════════════════════════ */
        .top-bar {
            background: rgb(247 247 247 / 0%);
            font-size: 13px;
            padding: 6px 0;
            color: #1e293b;
            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: var(--navy) !important;
            font-size: 13px;
            cursor: pointer;
            position: relative;
            z-index: 1;
            transition: all .25s var(--ease);
            flex-shrink: 0;
        }

        .globe-btn::after {
            display: none !important;
        }

        .globe-btn:hover {
            background: var(--green-soft) !important;
            border-color: var(--green-lite);
            color: var(--green) !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: var(--green-soft);
            color: var(--green-lite);
        }

        .login-link {
            color: var(--green-lite) !important;
            font-weight: 700;
            font-size: 13px;
            text-decoration: none;
            white-space: nowrap;
            transition: all .2s;
        }

        .login-link:hover {
            color: var(--green) !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 var(--ease);
        }

        .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: var(--navy) !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 var(--ease);
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--green-lite) !important;
            background: var(--green-soft);
        }

        /* Chevron */
        .nav-caret {
            font-size: 10px;
            color: #94a3b8;
            transition: transform .25s var(--ease), color .2s;
            flex-shrink: 0;
            margin-left: auto;
        }

        .partner-lnk {
            color: var(--green-lite) !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: var(--green-soft) !important;
            color: var(--green-lite) !important;
            border: none;
            text-decoration: none;
            flex-shrink: 0;
            transition: all .22s var(--ease);
        }

        .call-btn:hover {
            background: var(--green-lite) !important;
            color: #fff !important;
            transform: scale(1.05);
        }

        .demo-btn {
            background: var(--green) !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 var(--ease);
        }

        .demo-btn:hover {
            background: #fff !important;
            color: var(--green) !important;
            border-color: var(--green);
            box-shadow: 0 4px 12px rgba(0, 112, 49, .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(--green-lite);
            }

            .navbar-nav .nav-item:hover>.nav-link,
            .navbar-nav .nav-item.company-item:hover>.nav-link {
                color: var(--green-lite) !important;
                background: var(--green-soft);
            }

            /* ──── Desktop megamenu ──── */
            .dropdown-menu.megamenu {
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%) translateY(12px);
                width: 92vw;
                max-width: 1100px;
                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 {
                display: grid;
                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: var(--navy) !important;
            }

            .mega-tab-btn.active h5 {
                color: var(--green-lite) !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: var(--navy);
                transition: all .2s;
            }

            .sol-card:hover {
                background: var(--green-soft);
                transform: translateY(-1px);
            }

            .sol-icon {
                width: 36px;
                height: 36px;
                border-radius: 8px;
                background: #f1f5f9;
                color: var(--green-lite);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 15px;
                flex-shrink: 0;
                transition: all .2s;
            }

            .sol-card:hover .sol-icon {
                background: var(--green-lite);
                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: var(--green);
                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: var(--navy);
            }

            .sales-note a {
                color: var(--green-lite);
                text-decoration: none;
                font-weight: 600;
            }

            .outline-btn {
                border: 1px solid #e2e8f0;
                color: var(--navy);
                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(--green-lite);
                background: var(--green-soft);
                color: var(--green-lite);
            }

            /* ──── 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: 0;
                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: var(--navy);
                font-size: 13px;
                font-weight: 600;
                transition: all .2s;
            }

            .co-menu .co-item i {
                color: var(--green-lite);
                width: 16px;
                text-align: center;
            }

            .co-menu .co-item:hover {
                background: var(--green-soft);
                color: var(--green-lite);
            }

            /* 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: var(--green-soft);
                color: var(--green-lite);
                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: var(--green-soft);
                border-color: rgba(26, 166, 75, .25);
                color: var(--green-lite) !important;
            }

            /* Chevron for dropdown triggers */
            .mob-trigger .nav-caret {
                font-size: 11px;
                transition: transform .25s var(--ease), color .2s;
                color: #94a3b8;
            }

            .mob-trigger.is-open>.nav-link .nav-caret {
                transform: rotate(180deg);
                color: var(--green-lite);
            }

            .mob-trigger.is-open>.nav-link {
                color: var(--green-lite) !important;
                background: var(--green-soft);
                border-color: rgba(26, 166, 75, .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(--green-lite);
                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: var(--navy);
                min-width: 0;
                overflow: hidden;
                transition: all .2s;
            }

            .mob-item:hover {
                background: var(--green-soft);
                border-color: rgba(26, 166, 75, .3);
                color: var(--green-lite);
            }

            .mob-icon {
                width: 28px;
                height: 28px;
                min-width: 28px;
                border-radius: 7px;
                background: var(--green-soft);
                color: var(--green-lite);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                flex-shrink: 0;
                transition: all .2s;
            }

            .mob-item:hover .mob-icon {
                background: var(--green-lite);
                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;
            }

            /* ── 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: var(--navy);
                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: var(--green-soft);
                color: var(--green-lite);
            }

            .mob-co-panel a i {
                color: var(--green-lite);
                width: 16px;
                text-align: center;
            }

            /* 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(26, 166, 75, 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: var(--navy);
            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: var(--green-soft);
            color: var(--green);
            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;
        }

        .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: #e6fcf5 !important;
        }

        .ih-text-green {
            color: #0ca678 !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 var(--ease);
            background: transparent !important;
            
        }

        .header-wrap.is-scrolled {
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all .25s var(--ease);
            background: transparent !important;
            padding-top: 8px !important;
            padding-bottom: 8px !important;

        }
        
        
        
        
        /*footer style*/
        
        
        /* ===== NEW FOOTER STYLES ===== */
 :root {
     --blue: 
     --green: #39b54a;
 }

 .footer {
     background: #1a3a6d;
     color: #fff;
     padding-top: 60px;
     font-family: Arial, sans-serif;
 }

 /* Logo Section */
 .ras img {
     max-width: 320px;
     display: block;
     margin: 0 auto !important;
 }

 .ras {
     text-align: center !important;
 }

 .desc {
     max-width: 600px;
     margin: auto;
     color: #cbd5e0;
     font-size: 15px;
     line-height: 1.6;
 }

 /* Contact Section */
 .contact-box {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding: 30px 0;
     margin: 40px 0;
 }

 .contact-item {
     display: flex;
     gap: 15px;
 }

 .contact-item i {
     font-size: 15px;
 }

 .contact-item a {
     color: #fff;
     text-decoration: none;
 }
.small, small {
    font-size: 1em;
}
 /* Footer Links */
 .footer h6 {
     color: #defbe1;
     font-size: 13px;
     margin-bottom: 20px;
     font-weight: 900;
 }

 .footer a {
     color: #fff;
     text-decoration: none;
     font-size: 14px;
 }

 .footer a:hover {
     color: #dfefff !important;
 }

 .footer ul {
     list-style: none;
     padding: 0;
 }

 .footer ul li {
     margin-bottom: 8px;
 }

 /* 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: var(--green);
     transform: translateY(-3px);
     color: #fff !important;
 }

 @media (max-width: 768px) {
     .store-stack {
         align-items: center;
     }

     .crm-hub-footer {
         justify-content: center;
     }
 }

 /* Bottom */
 .bottom {
     background: var(--green);
     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;
}




    /* --- WhatsApp Widget Container --- */
    .whatsapp-widget-container {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 1050;
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none !important;
    }

    /* --- Left Tooltip Text Box --- */
    .whatsapp-tooltip {
        background-color: #f4f6f8;
        color: #1a2b49;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 14px;
        padding: 10px 18px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        white-space: nowrap;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none; /* Let clicks pass through to the main link */
    }

    /* --- Right Green Circle Icon --- */
    .whatsapp-circle-btn {
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: #ffffff !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    /* --- Hover Animations --- */
    .whatsapp-widget-container:hover .whatsapp-circle-btn {
        transform: scale(1.08);
        background-color: #128c7e;
    }
    
    .whatsapp-widget-container:hover .whatsapp-tooltip {
        transform: translateX(-4px);
    }

    /* --- Back to Top Button --- */
    #backToTopBtn {
        pointer-events: none;
    }
    #backToTopBtn.show {
        pointer-events: auto;
    }


/*Footer resposive*/
  @media (min-width: 320px) and (max-width: 767px) {
/* Social Icons Row */
            .social-row {
                display: flex;
                gap: 8px;
                padding: 0;
                list-style: none;
                margin-bottom: 25px !important;
            }

            .social-row li a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 20px !important;
                height: 20px !important;
                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: 15px !important;
                margin: 0 !important;
            }

.store-badge .badge-icon {
                font-size: 20px !important;
                margin-right: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 32px;
            }

            .store-badge {
                display: flex;
                align-items: center;
                background-color: #000;
                color: #fff;
                padding: 2px 4px !important;
                border-radius: 8px;
                text-decoration: none !important;
                width: 140px !important;
                height: 52px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                transition: transform 0.2s, background-color 0.2s;
            }

        }
        
        
        /*Tab foooter responive*/
        /* Social Icons Row */
          @media (min-width:768px) and (max-width: 1024px) {
            .social-row {
                display: flex;
                gap: 8px;
                padding: 0;
                list-style: none;
                margin-bottom: 25px !important;
            }

            .social-row li a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 20px !important;
                height: 20px !important;
                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: 15px !important;
                margin: 0 !important;
            }

}
        
        
.footerborder-light{
    
    
 
    --bs-border-opacity: 1;
    border-color: rgb(248 249 250 / 26%) !important;

}
        
           /* 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;
    }
}

/*exlpore-icon styles add*/
.more-icon{
    width: 36px;
                height: 36px;
                border-radius: 8px;
                background:#ffffff00;
                color: var(--green-lite);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 15px;
                flex-shrink: 0;
                transition: all .2s;
}
.more-icon:hover{
     background:#ffffff00;
                color: #193f70;
}
