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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            background: #ffffff;
            color: #1a1a2e;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;

        }

        @media(min-width:1700px) {
            body {
                zoom: 1.1;
            }
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        ul {
            list-style: none;
        }

        :root {
            --primary: #0041C2;
            --primary-dark: #002E8A;
            --primary-light: #E8F0FE;
            --navy: #0F1B2D;
            --navy-light: #1C2E4A;
            --gray-50: #f8f9fc;
            --gray-100: #f1f3f8;
            --gray-200: #e2e6ef;
            --gray-300: #c8cdd8;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --white: #ffffff;
            --container: 1400px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* =============================== UNIVERSAL SECTION PADDING =============================== */
        .section-padding,
        .section-padding-lg {
            padding: 100px 0;
        }


        .container {
            max-width: var(--container) !important;
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }

        /* TYPOGRAPHY */
        .h-display {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            font-size: clamp(2.8rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--navy);
        }

        .h-display em {
            font-style: italic;
            font-family: 'Instrument Serif', serif;
            color: var(--primary);
        }

        .h-section {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--navy);
        }

        .h-card {
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.4;
            color: var(--navy);
        }

        .text-lg {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--gray-600);
            font-weight: 400;
        }

        .text-sm {
            font-size: 0.875rem;
            color: var(--gray-500);
        }

        .overline {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 16px;
            display: block;
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.01em;
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #06b6d4 100%);
            color: #fff;
            box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #8b5cf6 0%, #818cf8 50%, #22d3ee 100%);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 28px rgba(124, 58, 237, 0.4);
        }

        .btn-outline {
            background: #fff;
            color: var(--navy);
            border: 1.5px solid var(--gray-200);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .btn-outline:hover {
            border-color: #7c3aed;
            color: #7c3aed;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.12);
        }

        .btn-white {
            background: #fff;
            color: var(--navy);
            border-radius: 100px;
        }

        .btn-white:hover {
            background: var(--gray-100);
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .btn-ghost {
            background: transparent;
            color: var(--primary);
            padding: 0;
            font-weight: 600;
            font-size: 0.875rem;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-ghost:hover {
            gap: 12px;
        }

        .btn-ghost svg {
            transition: transform 0.3s ease;
        }

        .btn-ghost:hover svg {
            transform: translateX(4px);
        }

        /* =============================== HEADER =============================== */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            padding: 20px 0;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        #header.scrolled {
            padding: 14px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .sub-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo img {
            height: 44px;
        }

        .menu-wrapper>ul {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .menu-wrapper>ul>li>a {
            font-size: 15px;
            font-weight: 500;
            color: var(--gray-700);
            padding: 10px 16px;
            display: block;
            transition: var(--transition);
            letter-spacing: -0.01em;
            border-radius: 6px;
        }

        .menu-wrapper>ul>li>a:hover {
            color: var(--primary);
            background: rgba(0, 65, 194, 0.04);
        }

        .menu-wrapper>ul>li:last-child>a.btn-primary {
            background: linear-gradient(135deg, #7c3aed 0%, #6366f1 40%, #06b6d4 100%);
            color: #fff;
            padding: 12px 26px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 13.5px;
            letter-spacing: 0.02em;
            border: none;
            text-transform: none;
            position: relative;
            overflow: visible;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .menu-wrapper>ul>li:last-child>a.btn-primary::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 100px;
            background: conic-gradient(from var(--angle, 0deg), #7c3aed, #06b6d4, #22d3ee, #a78bfa, #7c3aed);
            z-index: -1;
            animation: rotateBorder 3s linear infinite;
            opacity: 0.85;
        }

        .menu-wrapper>ul>li:last-child>a.btn-primary::after {
            content: '';
            position: absolute;
            inset: 2px;
            border-radius: 100px;
            background: linear-gradient(135deg, #7c3aed 0%, #6366f1 40%, #06b6d4 100%);
            z-index: -1;
        }

        .menu-wrapper>ul>li:last-child>a.btn-primary:hover {
            transform: translateY(-2px) scale(1.06);
        }

        .menu-wrapper>ul>li:last-child>a.btn-primary:hover::before {
            opacity: 1;
            filter: blur(4px);
            inset: -4px;
        }

        @property --angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        @keyframes rotateBorder {
            to {
                --angle: 360deg;
            }
        }

        @keyframes navBtnShimmer {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        .tab-link-header {
            position: relative;
            padding-left: 16px;
        }
          .menu-wrapper .tab-link-header:last-child{padding-left:35px;}

        .dropdown-wrapper {
            position: fixed;
            left: 0;
            right: 0;
            top: 100%;
            transform: translateY(8px);
            background: #fff;
            border-top: 1px solid var(--gray-100);
            padding: 48px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
            min-width: 100%;
        }

        .tab-link-header:hover .dropdown-wrapper {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .fullmenu-wrapper {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
        }

        .menu__col {
            padding: 0 28px;
            position: relative;
        }

        .menu__col::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--gray-100);
        }

        .menu__col:first-child {
            padding-left: 0;
        }

        .menu__col:last-child {
            padding-right: 0;
        }

        .menu__col:last-child::after {
            display: none;
        }

        .menu__col ul li {
            margin-bottom: 0;
        }

        .menu__col ul li:first-child {
            margin-bottom: 20px;
        }

        .menu__col ul li:first-child a {
            padding: 0;
        }

        .menu__col ul li:first-child a strong {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            letter-spacing: 0;
        }

        .menu__col ul li:first-child a strong::after {
            content: '\2197';
            font-size: 14px;
        }

        .menu__col ul li:first-child a:hover strong {
            background: var(--primary-dark);
        }

        .menu__col ul li+li {
            border-top: 1px solid var(--gray-100);
        }

        .menu__col ul li:first-child+li {
            border-top: none;
        }

        .menu__col ul li a {
            font-size: 14px;
            color: var(--navy);
            font-weight: 500;
            padding: 14px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
        }

        .menu__col ul li a:hover {
            color: var(--primary);
        }

        .menu__col ul li a strong {
            color: inherit;
            font-size: inherit;
            font-weight: inherit;
            letter-spacing: 0;
        }

        .menu-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 8px;
            color: var(--gray-500);
        }

        .menu-icon svg {
            stroke: var(--gray-500);
        }

        .menu-text {
            display: flex;
            flex-direction: column;
        }

        .menu-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--navy);
            line-height: 1.3;
        }

        .menu-desc {
            font-size: 12px;
            color: var(--gray-400);
            font-weight: 400;
            line-height: 1.3;
            margin-top: 2px;
        }

        .menu__col ul li a:hover .menu-title {
            color: var(--primary);
        }

        .menu__col ul li a:hover .menu-icon {
            background: rgba(0, 65, 194, 0.06);
        }

        /* Nav arrow */
        .nav-arrow {
            margin-left: 2px;
            transition: transform 0.2s ease;
        }

        .has-dropdown:hover .nav-arrow {
            transform: rotate(180deg);
        }

        /* Industries dropdown smaller */
        .drop-industries {
            padding: 36px 0;
        }

        .drop-industries .fullmenu-wrapper {
            grid-template-columns: repeat(3, 1fr);
            max-width: 860px;
        }

        .drop-industries .menu__col ul li:first-child {
            display: flex;
        }

        .mobile-menu {
            display: none;
        }

        #mobile-header {
            background: #fff;
            width: 100%;
            height: 70px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            justify-content: space-between;
            border-bottom: 1px solid var(--gray-200);
        }

        #mobile-header .mobile-logo img {
            max-width: 100px;
        }

        .mobile-header-actions {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-head-cta {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.01em;
            padding: 9px 12px;
            line-height: 1;
            border-radius: 999px;
            white-space: nowrap;
            text-transform: none;
        }

        #mobile-menu {
            position: fixed;
            background: #fff;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            z-index: 1001;
            padding: 20px;
        }

        #mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu-close {
            position: absolute;
            top: 10px;
            right: 12px;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(15, 27, 45, 0.12);
            border-radius: 50%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 244, 250, 0.95));
            color: var(--navy);
            cursor: pointer;
            z-index: 2;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .mobile-menu-close span {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 16px;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transform-origin: center;
        }

        .mobile-menu-close span:first-child {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .mobile-menu-close span:last-child {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .mobile-menu-close:hover {
            transform: scale(1.04);
            border-color: rgba(0, 65, 194, 0.35);
            box-shadow: 0 9px 18px rgba(0, 65, 194, 0.12);
        }

        #mobile-menu .mobile-menu-logo {
            margin: 10px 0 8px;
        }

        #mobile-menu .mobile-menu-logo img {
            max-width: 180px;
            width: 100%;
            height: auto;
        }

        .btn-nav-mobile {
            color: var(--navy);
            height: 32px;
            width: 30px;
            cursor: pointer;
            position: relative;
            display: inline-block;
        }

        .btn-nav-mobile::before,
        .btn-nav-mobile span,
        .btn-nav-mobile::after {
            content: "";
            background: var(--navy);
            display: block;
            height: 2px;
            position: absolute;
            left: 0;
            right: 0;
            width: 22px;
            margin: auto;
            transition: all 180ms ease;
            top: 21px;
        }

        .btn-nav-mobile::before {
            top: 9px;
        }

        .btn-nav-mobile span {
            top: 15px;
        }

        .btn-nav-mobile.opened span {
            display: none;
        }

        .btn-nav-mobile.opened::before {
            transform: rotate(45deg);
            top: 15px;
        }

        .btn-nav-mobile.opened::after {
            transform: rotate(-45deg);
            top: 15px;
        }

        .mobile-menu-list {
            margin-top: 40px;
            list-style: none;
            padding: 0;
        }

        .mobile-menu-list>li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-menu-list>li:last-child {
            border-bottom: none;
        }

        .mobile-accordian-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .mobile-accordian-header>a {
            display: block;
            font-size: 17px;
            font-weight: 500;
            color: var(--navy);
            text-decoration: none;
            flex: 1;
        }

        .mobile-accordian-header>a:hover {
            color: var(--primary);
        }

        .mobile-link-icon {
            display: none;
        }

        .mobile-accordion-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: #f3f4f6;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s, transform 0.2s;
        }

        .mobile-accordion-toggle:hover {
            background: #e8eaed;
        }

        .mobile-accordion-toggle svg {
            width: 16px;
            height: 16px;
            stroke: #1a1a2e;
            stroke-width: 2.2;
            transition: transform 0.3s ease;
        }

        .mobile-accordion-toggle.active {
            background: #f3f4f6;
        }

        .mobile-accordion-toggle.active svg {
            transform: rotate(180deg);
        }

        .mobile-accordian-content {
            display: none;
            margin: 0 0 16px;
            padding: 16px;
            background: #f8f9fc;
            border-radius: 16px;
        }

        .mobile-accordian-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-accordian-content ul li {
            border: none;
        }

        .mobile-accordian-content ul li a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 11px;
            text-decoration: none;
            border-radius: 12px;
            transition: background 0.15s;
        }

        .mobile-accordian-content ul li a:hover {
            background: rgba(0, 65, 194, 0.04);
        }

        .mobile-sub-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f3f4f6;
        }

        .mobile-sub-icon svg {
            width: 20px;
            height: 20px;
            stroke: #4b5563;
            fill: none;
            stroke-width: 1.6;
        }

        .mobile-sub-text {
            display: flex;
            flex-direction: column;
        }

        .mobile-sub-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--navy);
        }

        .mobile-sub-desc {
            font-size: 13px;
            color: var(--gray-500);
            margin-top: 2px;
        }

        /* 3rd Level Nested Menu */
        .mobile-menu-level-2 {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-item-nested {
            margin-bottom: 4px;
        }

        .mobile-nested-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border-radius: 12px;
            padding: 4px 10px 4px 0;
            transition: background 0.15s;
        }

        .mobile-nested-header:hover {
            background: rgba(0, 65, 194, 0.02);
        }

        .mobile-nested-header>a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 4px;
            text-decoration: none;
            flex: 1;
        }

        .mobile-nested-toggle {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: none;
            background: #f3f4f6;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s, transform 0.2s;
        }

        .mobile-nested-toggle:hover {
            background: #e8eaed;
        }

        .mobile-nested-toggle svg {
            width: 14px;
            height: 14px;
            stroke: #1a1a2e;
            stroke-width: 2.2;
            transition: transform 0.3s ease;
        }

        .mobile-nested-toggle.active svg {
            transform: rotate(180deg);
        }

        .mobile-menu-level-3 {
            display: none;
            list-style: none;
            padding: 8px 0 4px 54px;
            margin: 0;
        }

        .mobile-menu-level-3 li {
            margin: 0;
        }

        .mobile-menu-level-3 li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            font-size: 14px;
            font-weight: 500;
            color: #5a6b82;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.15s;
        }

        .mobile-menu-level-3 li a:hover {
            background: rgba(0, 65, 194, 0.06);
            color: var(--primary);

        }

        .mobile-level3-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f3f4f6;
            transition: all 0.15s;
        }

        .mobile-level3-icon svg {
            width: 16px;
            height: 16px;
            stroke: #6b7a90;
            fill: none;
            stroke-width: 1.8;
        }

        .mobile-menu-level-3 li a:hover .mobile-level3-icon {
            background: rgba(0, 65, 194, 0.1);
        }

        .mobile-menu-level-3 li a:hover .mobile-level3-icon svg {
            stroke: var(--primary);
        }

        /* =============================== HERO =============================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 140px 0 80px;
            background: #f9fafb;
        }

        .hero-bg-video {
            position: absolute;
            width: 50%;
            height: 120%;
            object-fit: cover;
            z-index: 0;
            opacity: 1;
            right: 0;
            bottom: -28%;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(200, 200, 200, 0.15) 1px, transparent 1px),
                linear-gradient(90deg, rgba(200, 200, 200, 0.15) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 0;
            right: 0;
            height: 70%;
            background: conic-gradient(from 180deg at 50% 100%,
                    rgba(241, 172, 23, 0.7) 0deg,
                    rgba(255, 120, 50, 0.6) 60deg,
                    rgba(241, 172, 23, 0.1) 120deg,
                    rgba(255, 255, 255, 0) 180deg,
                    rgba(26, 111, 255, 0.2) 240deg,
                    rgba(26, 111, 255, 0.6) 300deg,
                    rgba(255, 200, 60, 0.7) 360deg);
            filter: blur(60px);
            pointer-events: none;
            z-index: 0;
        }

        @keyframes blobFloat {

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

            25% {
                transform: translateY(-20px) rotate(5deg);
            }

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

            75% {
                transform: translateY(-25px) rotate(3deg);
            }
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 52% 1fr;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .hero-content .overline {
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }

        .hero-content .overline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 10px rgba(0, 65, 194, 0.4);
        }

        .hero-content h1 {
            margin-bottom: 24px;
        }

        .hero-content .text-lg {
            margin-bottom: 40px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        /* Hero trust metrics */
        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            padding: 10px;
            border-radius: 18px;

            border: 1px solid rgba(15, 35, 75, 0.08);
            box-shadow: 0 16px 34px rgba(13, 39, 80, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
        }

        .hero-metric {
            padding: 20px 16px;
            position: relative;
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 255, 0.9) 100%);
            border: 1px solid rgba(0, 65, 194, 0.1);
            box-shadow: 0 10px 24px rgba(0, 65, 194, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .hero-metric::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, rgba(0, 65, 194, 0.95) 0%, rgba(39, 124, 255, 0.8) 100%);
        }

        .hero-metric::after {
            content: '';
            position: absolute;
            right: -18px;
            bottom: -18px;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 65, 194, 0.16) 0%, rgba(0, 65, 194, 0) 70%);
            pointer-events: none;
        }

        .hero-metric:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 28px rgba(0, 65, 194, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .hero-metric .metric-value {
            font-size: 34px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .hero-metric .metric-label {
            font-size: 11px;
            color: var(--gray-600);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1.45;
        }

        .hero-metric:nth-child(2)::before {
            background: linear-gradient(90deg, rgba(0, 113, 145, 0.95) 0%, rgba(24, 160, 190, 0.8) 100%);
        }

        .hero-metric:nth-child(3)::before {
            background: linear-gradient(90deg, rgba(41, 89, 176, 0.95) 0%, rgba(104, 138, 206, 0.8) 100%);
        }

        /* Right side abstract visual */
        .hero-visual {
            position: relative;
            width: 100%;
            height: 480px;
            border-radius: 20px;
            overflow: hidden;
            background: #0a0a0a;
            box-shadow: 0 20px 60px rgba(0, 65, 194, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 65, 194, 0.06);
        }

        .hero-visual-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }


        /* Floating keyword tags */
        .hero-tags {
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
        }

        .hero-tag {
            position: absolute;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(0, 65, 194, 0.1);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 11px;
            font-weight: 600;
            color: var(--navy);
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            animation: tagFloat 6s ease-in-out infinite;
        }

        .hero-tag::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin-right: 6px;
            background: var(--primary);
        }

        .hero-tag:nth-child(1) {
            top: 12%;
            left: 10%;
            animation-delay: 0s;
        }

        .hero-tag:nth-child(2) {
            top: 8%;
            right: 8%;
            animation-delay: -1.5s;
        }

        .hero-tag:nth-child(3) {
            bottom: 28%;
            left: 5%;
            animation-delay: -3s;
        }

        .hero-tag:nth-child(4) {
            bottom: 12%;
            right: 10%;
            animation-delay: -4.5s;
        }

        .hero-tag:nth-child(5) {
            top: 40%;
            right: 3%;
            animation-delay: -2s;
        }

        .hero-tag:nth-child(6) {
            bottom: 45%;
            left: 3%;
            animation-delay: -5s;
        }

        @keyframes tagFloat {

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

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

        /* =============================== LOGOS BAR =============================== */
        .logos-bar {
            padding: 48px 0;
            background: #fff;
            overflow: hidden;
        }

        .logos-bar .trust-statement {
            text-align: center;
            margin-bottom: 36px;
            font-size: 15px;
            color: var(--gray-500);
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .logos-bar .trust-statement strong {
            color: var(--navy);
            font-weight: 600;
        }

        .logos-marquee {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

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

        .logos-track {
            display: flex;
            align-items: center;
            gap: 64px;
            padding: 0 32px;
        }

        .logos-track img {
            height: 32px;
            opacity: 0.45;
            filter: grayscale(100%);
            transition: opacity 0.3s ease, filter 0.3s ease;
        }

        .logos-track img:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

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

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

        /* =============================== SOLUTIONS =============================== */
        .solutions-section {
            background: #fff;
            position: relative;
            overflow: hidden;
        }

        .solutions-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
            pointer-events: none;
            z-index: 0;
        }

        .solutions-section .container {
            position: relative;
            z-index: 1;
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 72px;
            text-align: center;
        }

        .section-header .overline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 65, 194, 0.06);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: #0041C2;
            letter-spacing: 0.04em;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 65, 194, 0.15);
        }

        .section-header .h-section {
            margin-bottom: 16px;
            color: var(--navy);
        }

        .section-header .text-lg {
            margin-top: 0;
            color: var(--gray-500);
            font-size: 1.05rem;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .solution-card {
            padding: 36px 32px 32px;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.06);
            background: #fff;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            min-height: 340px;
        }

        /* blob gradient bottom */
        .solution-card .card-blob {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            filter: blur(48px);
            opacity: 0.3;
            transition: opacity 0.4s ease, transform 0.4s ease;
            pointer-events: none;
            z-index: 0;
        }

        .solution-card:nth-child(1) .card-blob {
            background: radial-gradient(circle, #4f8fff 0%, #0041C2 60%, transparent 100%);
        }

        .solution-card:nth-child(2) .card-blob {
            background: radial-gradient(circle, #a78bfa 0%, #7C3AED 60%, transparent 100%);
        }

        .solution-card:nth-child(3) .card-blob {
            background: radial-gradient(circle, #818cf8 0%, #4338ca 60%, transparent 100%);
        }

        .solution-card:nth-child(4) .card-blob {
            background: radial-gradient(circle, #c084fc 0%, #9333ea 60%, transparent 100%);
        }

        .solution-card:nth-child(5) .card-blob {
            background: radial-gradient(circle, #60a5fa 0%, #2563eb 60%, transparent 100%);
        }

        .solution-card:nth-child(6) .card-blob {
            background: radial-gradient(circle, #f0abfc 0%, #a21caf 60%, transparent 100%);
        }

        .solution-card:hover .card-blob {
            opacity: 0.4;
            transform: scale(1.15);
        }

        .solution-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.08);
        }

        /* content above blob */
        .solution-card .card-content {
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* remove ::before top bar and ::after number */
        .solution-card::before,
        .solution-card::after {
            display: none;
        }

        /* icon */
        .solution-card .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(0, 0, 0, 0.08);
            transition: background 0.3s ease, transform 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .solution-card:hover .card-icon {
            background: #fff;
            transform: translateY(-2px);
        }

        .solution-card .card-icon svg {
            width: 22px;
            height: 22px;
            stroke: #1e2d4d;
            stroke-width: 1.5;
        }

        .solution-card h3 {
            margin-bottom: 10px;
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f1b2d;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }

        .solution-card p {
            color: #4b5a6e;
            font-size: 0.88rem;
            line-height: 1.75;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        /* arrow bottom-right */
        .solution-card .card-link {
            position: absolute;
            bottom: 28px;
            right: 28px;
            z-index: 2;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .solution-card:hover .card-link {
            background: #fff;
            transform: translate(2px, -2px);
        }

        .solution-card .card-link svg {
            width: 15px;
            height: 15px;
            stroke: #0f1b2d;
            stroke-width: 2;
            transition: stroke 0.3s ease;
        }

        .solution-card:hover .card-link svg {
            stroke: #0041C2;
        }

        /* =============================== WHY SECTION =============================== */
        .why-section {
            background: linear-gradient(180deg, #f8f9fd 0%, #ffffff 100%);
        }

        .why-section .section-header {
            text-align: left;
            margin: 0 0 56px;
            max-width: 600px;
        }

        .why-section .section-header .overline {
            background: rgba(0, 65, 194, 0.06);
            color: #0041C2;
            border-color: rgba(0, 65, 194, 0.15);
        }

        .why-section .h-section {
            color: #0f1b2d;
        }

        .why-section .section-header .text-lg {
            color: #6b7a90;
        }

        /* 2-col grid */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        /* clean white card design */
        .why-card {
            position: relative;
            background: #ffffff;
            border-radius: 20px;
       
            padding: 40px 36px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0041C2 0%, #0056E0 50%, #0064FF 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .why-card:hover::before {
            transform: scaleX(1);
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(0, 65, 194, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
            border-color: rgba(0, 65, 194, 0.1);
        }

        /* tag pill — top */
        .why-card-tag {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 65, 194, 0.08) 0%, rgba(0, 100, 255, 0.12) 100%);
            border: 1px solid rgba(0, 65, 194, 0.15);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0041C2;
            width: fit-content;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .why-card:hover .why-card-tag {
            background: linear-gradient(135deg, rgba(0, 65, 194, 0.12) 0%, rgba(0, 100, 255, 0.18) 100%);
            border-color: rgba(0, 65, 194, 0.25);
            transform: translateX(4px);
        }

        /* stat number */
        .why-card .wc-stat {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(3rem, 4.5vw, 4rem);
            font-weight: 800;
            color: #0041C2;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .why-card .wc-stat sup {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0041C2;
            vertical-align: super;
        }

        .why-card .wc-stat-label {
            font-size: 0.85rem;
            color: #6b7a90;
            margin-bottom: 10px;
            font-weight: 500;
        }

        /* card content */
        .why-card-body {
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex: 1;
        }

        /* heading — large editorial */
        .why-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.4rem, 2.2vw, 1.6rem);
            font-weight: 700;
            color: #0f1b2d;
            line-height: 1.3;
            margin: 0;
            transition: color 0.3s ease;
        }

        .why-card:hover h3 {
            color: #0041C2;
        }

        .why-card h3 em {
            font-style: italic;
            background: linear-gradient(135deg, #0041C2, #0064FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            padding-right: 14px;
        }

        /* description */
        .why-card p {
            color: #6b7a90;
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }

        /* =============================== CASE STUDIES =============================== */
        .cases-section {
            background: #f7f8fa;
        }

        .cases-header {
            margin-bottom: 64px;
        }

        .cases-header .overline {
            background: none;
            color: #0041C2;
            border: none;
            padding: 0;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .cases-header .h-section {
            color: #0f1b2d;
            margin-bottom: 12px;
        }

        .cases-header .cases-subtitle {
            font-size: 1rem;
            color: #6b7a90;
            line-height: 1.7;
            max-width: 480px;
        }

        /* split layout */
        .cases-layout {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 56px;
            align-items: start;
        }

        /* left tabs */
        .cases-tabs {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .case-tab {
            padding: 18px 20px 18px 20px;
            border-left: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 0 10px 10px 0;
            margin-bottom: 4px;
        }

        .case-tab:hover {
            background: rgba(0, 65, 194, 0.04);
        }

        .case-tab.active {
            border-left-color: #0041C2;
            background: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border-radius: 0 12px 12px 0;
        }

        .case-tab .case-tab-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #4a5568;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .case-tab .case-tab-title::after {
            content: '';
            width: 20px;
            height: 20px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            flex-shrink: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 0.5;
        }

        .case-tab:hover .case-tab-title::after {
            opacity: 1;
            transform: translateX(3px);
        }

        .case-tab.active .case-tab-title::after {
            opacity: 0;
            width: 0;
        }

        .case-tab:hover .case-tab-title {
            color: #0041C2;
        }

        .case-tab.active .case-tab-title {
            color: #0f1b2d;
            font-weight: 700;
            font-size: 1rem;
        }

        /* expanded content */
        .case-tab-content {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.35s ease;
            padding: 0;
        }

        .case-tab.active .case-tab-content {
            max-height: 320px;
            opacity: 1;
            padding-top: 14px;
        }

        .case-tab-content .case-tag {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0041C2;
            background: rgba(0, 65, 194, 0.07);
            padding: 5px 12px;
            border-radius: 6px;
            margin-bottom: 12px;
        }

        .case-tab-content p {
            font-size: 0.88rem;
            color: #5a6577;
            line-height: 1.75;
            margin-bottom: 18px;
        }

        .case-tab-content .case-detail-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            font-weight: 700;
            color: #0041C2;
            text-decoration: none;
            transition: gap 0.25s ease;
            padding: 8px 16px;
            border-radius: 8px;
            background: rgba(0, 65, 194, 0.06);
            border: 1px solid rgba(0, 65, 194, 0.12);
        }

        .case-tab-content .case-detail-btn:hover {
            gap: 10px;
            background: rgba(0, 65, 194, 0.1);
        }

        .case-tab-content .case-detail-btn svg {
            width: 14px;
            height: 14px;
            stroke: #0041C2;
        }

        /* Inline images for mobile */
        .case-inline-image {
            display: none;
            width: 100%;
            margin: 16px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .case-inline-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* right image panel */
        .cases-image-panel {
            position: sticky;
            top: 100px;
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            min-height: 480px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .case-image-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .case-image-slide.active {
            opacity: 1;
            position: relative;
        }

        .case-image-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }

        /* =============================== INDUSTRIES =============================== */
        .industries-section {
            background: #fff;
            overflow: hidden;
        }

        .industries-section .section-top {
            margin-bottom: 48px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
            margin-bottom: 48px;
        }

        .industries-section .section-top p {
            font-size: 1.05rem;
            color: #6b7a90;
            margin-top: 8px;
        }

        .ind-nav {
            display: none;
        }

        /* vertical layout - no slider */
        .industries-scroll {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;

            margin: 0 auto;
            padding: 0 20px;
        }

        /* each card */
        .ind-card {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .ind-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }

        /* background image */
        .ind-card-img {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .ind-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .ind-card:hover .ind-card-img img {
            transform: scale(1.05);
        }

        /* dark overlay for text readability */
        .ind-card::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.15) 100%);
            pointer-events: none;
            transition: background 0.3s ease;
        }

        .ind-card:hover::before {
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.2) 100%);
        }

        /* light variant — no overlay */
        .ind-card.light::before {
            background: none;
        }

        .ind-card.light {
            background: #f0f2f5;
        }

        /* content wrapper at left center */
        .ind-card-content {
            position: relative;
            z-index: 2;
            width: 50%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.40) 100%);
            padding: 28px;
            backdrop-filter: blur(10px);
            border-radius: 0 24px 24px 0;
            box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4),
                inset 0 0 60px rgba(0, 100, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 3px solid rgba(0, 120, 255, 0.6);
            transition: all 0.4s ease;
        }

        .ind-card:hover .ind-card-content {
            background: linear-gradient(135deg,
                    rgba(15, 27, 45, 0.98) 0%,
                    rgba(20, 40, 70, 0.95) 40%,
                    rgba(0, 75, 215, 0.92) 100%);
            box-shadow: 12px 0 40px rgba(0, 0, 0, 0.5),
                inset 0 0 80px rgba(0, 120, 255, 0.2);
            border-left-color: rgba(0, 150, 255, 0.8);
        }

        /* text styling */
        .ind-card-text {
            margin-bottom: 24px;
        }

        .ind-card-text h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 16px;
            line-height: 1.2;
            text-shadow: 0 2px 20px rgba(0, 100, 255, 0.4);
            transition: transform 0.3s ease;
            position: relative;
        }

        .ind-card-text h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, rgba(0, 150, 255, 0.8), transparent);
            border-radius: 2px;
        }

        .ind-card:hover .ind-card-text h3 {
            transform: translateY(-2px);
        }

        .ind-card-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.7;
            margin: 0;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
        }

        .ind-card.light .ind-card-text h3 {
            color: #0f1b2d;
        }

        .ind-card.light .ind-card-text p {
            color: #6b7a90;
        }

        /* button styling */
        .ind-card-btn {
            margin-top: 0;
        }

        .ind-card-btn span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.95);
            color: #0f1b2d;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .ind-card-btn span::after {
            content: '→';
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .ind-card:hover .ind-card-btn span {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .ind-card:hover .ind-card-btn span::after {
            transform: translateX(4px);
        }

        .ind-card.light .ind-card-btn span {
            background: #0f1b2d;
            color: #fff;
        }

        .ind-card.light:hover .ind-card-btn span {
            background: #1a2a40;
        }

        /* =============================== PROCESS =============================== */
        .process-section {
            background: linear-gradient(180deg, #f8f9fd 0%, #ffffff 50%, #f8fafe 100%);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 1600px;
            height: 1600px;
            background: radial-gradient(circle at center, rgba(0, 65, 194, 0.06) 0%, rgba(0, 86, 224, 0.03) 30%, transparent 70%);
            pointer-events: none;
            animation: pulseGlow 8s ease-in-out infinite;
        }

        .process-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle at bottom right, rgba(0, 65, 194, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                opacity: 1;
                transform: translateX(-50%) scale(1);
            }

            50% {
                opacity: 0.8;
                transform: translateX(-50%) scale(1.05);
            }
        }

        .process-section .section-top {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }



        .process-section .section-top p {
            font-size: 1.125rem;
            color: #5a6b82;
            margin-top: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-grid::before {
            content: '';
            position: absolute;
            top: 73px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(0, 65, 194, 0.12) 15%, rgba(0, 65, 194, 0.18) 50%, rgba(0, 65, 194, 0.12) 85%, transparent);
            z-index: 0;
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(0, 65, 194, 0.08);
        }

        .process-grid::after {
            content: '';
            position: absolute;
            top: 73px;
            left: 10%;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #0041C2 0%, #0056E0 50%, #0066FF 100%);
            z-index: 1;
            animation: progressLine 3s ease-out forwards;
            animation-delay: 0.5s;
            border-radius: 2px;
            box-shadow: 0 2px 12px rgba(0, 65, 194, 0.4), 0 0 20px rgba(0, 86, 224, 0.3);
        }

        @keyframes progressLine {
            to {
                width: 80%;
            }
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 40px 28px 36px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.98) 100%);
            border-radius: 24px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            overflow: hidden;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0041C2 0%, #0056E0 50%, #0066FF 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .process-step::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(0, 65, 194, 0.2), transparent 60%, rgba(0, 86, 224, 0.1));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .process-step:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 24px 70px rgba(0, 65, 194, 0.18), 0 8px 20px rgba(0, 86, 224, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
            border-color: rgba(0, 65, 194, 0.15);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 255, 1) 100%);
        }

        .process-step:hover::before {
            opacity: 1;
        }

        .process-step:hover::after {
            opacity: 1;
        }

        /* Decorative floating elements */
        .process-step .step-decorator {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 65, 194, 0.06) 0%, transparent 70%);
            pointer-events: none;
            opacity: 0;
            transition: all 0.6s ease;
        }

        .process-step .step-decorator:nth-of-type(1) {
            top: -20px;
            left: -20px;
        }

        .process-step .step-decorator:nth-of-type(2) {
            bottom: -20px;
            right: -20px;
        }

        .process-step:hover .step-decorator {
            opacity: 1;
            animation: float 3s ease-in-out infinite;
        }

        .process-step:hover .step-decorator:nth-of-type(2) {
            animation-delay: 1.5s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(5px, -5px) scale(1.1);
            }
        }

        .process-step .step-num {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            margin: 0 auto 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 900;
            font-size: 2.2rem;
            color: #fff;
            background: linear-gradient(135deg, #0041C2 0%, #0056E0 50%, #0066FF 100%);
            box-shadow: 0 16px 48px rgba(0, 65, 194, 0.35), 0 8px 24px rgba(0, 86, 224, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.2), inset 0 -3px 12px rgba(0, 0, 0, 0.2);
            position: relative;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .process-step .step-num::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 65, 194, 0.3), rgba(0, 86, 224, 0.2), rgba(0, 102, 255, 0.25));
            z-index: -1;
            filter: blur(8px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .process-step:hover .step-num {
            transform: scale(1.15) rotate(8deg);
            box-shadow: 0 20px 60px rgba(0, 65, 194, 0.45), 0 12px 30px rgba(0, 86, 224, 0.3), inset 0 2px 6px rgba(255, 255, 255, 0.3), inset 0 -3px 12px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, #0041C2 0%, #0056E0 40%, #0066FF 100%);
        }

        .process-step:hover .step-num::before {
            opacity: 1;
            transform: scale(1.2);
        }

        .process-step .step-num::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 65, 194, 0.2), rgba(0, 86, 224, 0.2));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .process-step:hover .step-num::before {
            opacity: 1;
        }

        .process-step .step-num::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid transparent;
            background: linear-gradient(135deg, rgba(0, 65, 194, 0.3), rgba(0, 86, 224, 0.1)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            animation: pulse 2s infinite;
            animation-delay: calc(var(--step-index, 0) * 0.3s);
        }

        .process-step:nth-child(1) {
            --step-index: 0;
        }

        .process-step:nth-child(2) {
            --step-index: 1;
        }

        .process-step:nth-child(3) {
            --step-index: 2;
        }

        .process-step:nth-child(4) {
            --step-index: 3;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.1);
            }
        }

        .process-step h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            font-weight: 800;
            color: #0f1b2d;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            transition: all 0.4s ease;
            position: relative;
        }

        .process-step:hover h3 {
            background: linear-gradient(135deg, #0041C2 0%, #0056E0 60%, #0066FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transform: translateY(-2px);
        }

        .process-step p {
            font-size: 0.98rem;
            color: #5a6b82;
            line-height: 1.8;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .process-step:hover p {
            color: #4a5568;
        }

        .process-step .step-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 65, 194, 0.08), rgba(0, 86, 224, 0.12));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.8) rotate(-10deg);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .process-step:hover .step-icon {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .process-step .step-icon::after {
            content: '✓';
            color: #0041C2;
            font-weight: 900;
            font-size: 16px;
        }

        /* =============================== STATS BANNER =============================== */
        /* =============================== STATS BANNER =============================== */
        .stats-banner {
            padding: 0;
            background: #fff;
            border-top: 1px solid rgba(0, 0, 0, 0.07);
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            overflow: hidden;
        }

        /* top header row */
        .stats-banner-header {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 0;
        }

        .stats-banner-left {
            padding: 72px 56px 72px 0;
            border-right: 1px solid rgba(0, 0, 0, 0.08);
        }

        .stats-banner-header .overline {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #0041C2;
            margin-bottom: 16px;
        }

        .stats-banner-header h2 em {
            font-style: normal;
            font-weight: 800;
            color: #0041C2;
        }

        .stats-banner-right {
            padding: 72px 0 72px 56px;
        }

        .stats-banner-right p {
            font-size: 1rem;
            color: #4b5a6e;
            line-height: 1.8;
            margin: 0 0 24px;
        }

        .stats-banner-right .stats-trusted {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #6b7a90;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .stats-trusted-dots {
            display: flex;
            gap: 4px;
        }

        .stats-trusted-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #000cff;
            opacity: 0.5;
        }

        .stats-trusted-dots span:nth-child(1) {
            opacity: 0.5;
            background: #ff0000;
        }

        .stats-trusted-dots span:nth-child(2) {
            opacity: 0.5;
            background: #036d00;
        }

        /* numbers grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid rgba(0, 0, 0, 0.08);

            background: #f8f9fb;
        }

        .stat-item {
            padding: 48px 40px;
            border-right: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0041C2, #4f8fff);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .stat-item:nth-child(2)::before,
        .stat-item:nth-child(4)::before {
            opacity: 1;
        }

        .stat-item:nth-child(2),
        .stat-item:nth-child(4) {
            background: #fff;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item .stat-number {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.8rem, 4.5vw, 4rem);
            font-weight: 800;
            color: #0f1b2d;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .stat-item .stat-number span {
            color: #0041C2;
        }

        .stat-item .stat-label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            color: #0f1b2d;
            font-weight: 600;
            line-height: 1.4;
        }

        .stat-item .stat-desc {
            font-size: 0.82rem;
            color: #6b7a90;
            line-height: 1.7;
            font-weight: 400;
        }

        /* highlights 3-col grid */
        .stats-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

        .stats-highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 40px;
            border-right: 1px solid rgba(0, 0, 0, 0.08);
            transition: background 0.2s ease;
        }

        .stats-highlight-item:hover {
            background: #f8f9fb;
        }

        .stats-highlight-item:last-child {
            border-right: none;
        }

        .stats-highlight-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            border-radius: 12px;
            background: #eef2fb;
            border: 1px solid rgba(0, 65, 194, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .stats-highlight-icon svg {
            width: 20px;
            height: 20px;
            stroke: #0041C2;
        }

        .stats-highlight-body {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .stats-highlight-body strong {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #0f1b2d;
        }

        .stats-highlight-label {
            font-size: 0.83rem;
            color: #6b7a90;
            line-height: 1.7;
            font-weight: 400;
        }

        .cta-section {
            background: #f8fafb;
            position: relative;
        }

        .cta-inner {
            max-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: stretch;
            background: #ffffff;
            border-radius: 32px;
            padding: 0;
            min-height: 480px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(26, 41, 66, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-content {
            text-align: left;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 50%, #f5f7fa 100%);
        }

        .cta-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 65, 194, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .cta-content>* {
            position: relative;
            z-index: 1;
        }

        .cta-visual {
            position: relative;
            z-index: 2;
            align-self: stretch;
            display: flex;
        }

        .cta-visual img {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 0 32px 32px 0;
            object-fit: cover;
            object-position: center;
            transition: transform 0.4s ease;
        }

        .cta-visual img:hover {
            transform: scale(1.02);
        }

        .cta-inner h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            color: #0f1b2d;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .cta-inner h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0041C2 0%, #0056E0 100%);
            border-radius: 2px;
            opacity: 0;
            animation: slideInAccent 0.6s ease forwards;
            animation-delay: 0.3s;
        }

        @keyframes slideInAccent {
            to {
                opacity: 1;
            }
        }

        .cta-inner .text-lg {
            color: #4a5568;
            max-width: 100%;
            margin: 0 0 40px 0;
            position: relative;
            z-index: 2;
            font-size: 1.125rem;
            line-height: 1.7;
            font-weight: 400;
        }

        .cta-btns {
            display: flex;
            gap: 18px;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .cta-btns .btn-white {
            padding: 17px 38px;
            border-radius: 50px;
            background: linear-gradient(135deg, #0041C2 0%, #0056E0 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 6px 20px rgba(0, 65, 194, 0.25);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .cta-btns .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 65, 194, 0.35);
            background: linear-gradient(135deg, #0056E0 0%, #0041C2 100%);
        }


        /* =============================== FOOTER =============================== */
        .site-footer {
            background: #fff;
            padding: 100px 0 0;
            color: #0f1b2d;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            position: relative;
            width: 100%;
  max-width: 100%;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr;
            gap: 56px;
            padding-bottom: 72px;
        }

        .footer-tagline h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            color: #0f1b2d;
            line-height: 1.2;
            max-width: 280px;
        }

        .foot-col h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #0f1b2d;
            margin-bottom: 24px;
        }

        .foot-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .foot-col ul li {
            margin-bottom: 14px;
        }

        .foot-col ul li a {
            font-size: 0.9rem;
            color: #4a5568;
            text-decoration: none;
            transition: color 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .foot-col ul li a:hover {
            color: #0f1b2d;
        }

        .foot-col ul li a .foot-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .foot-col ul li a .foot-icon svg {
            width: 16px;
            height: 16px;
            stroke: #6b7a90;
            fill: none;
            stroke-width: 1.5;
        }

        /* bottom bar */
        .footer-bottom {
            padding: 24px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom .footer-logo img {
            height: 28px;
        }

        .footer-bottom .foot-links {
            display: flex;
            gap: 28px;
        }

        .footer-bottom .foot-links a {
            font-size: 0.85rem;
            color: #4a5568;
            text-decoration: none;
        }

        .footer-bottom .foot-links a:hover {
            color: #0f1b2d;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 28px;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a5568;
            transition: all 0.2s ease;
        }

        .footer-socials a:hover {
            background: #0f1b2d;
            color: #fff;
        }

        .footer-socials a svg {
            width: 16px;
            height: 16px;
        }

        /* =============================== ANIMATIONS =============================== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-d1 {
            transition-delay: 0.1s;
        }

        .reveal-d2 {
            transition-delay: 0.2s;
        }

        .reveal-d3 {
            transition-delay: 0.3s;
        }

        .reveal-d4 {
            transition-delay: 0.4s;
        }

        .reveal-d5 {
            transition-delay: 0.5s;
        }


        .service-hero .hero-content h1::before {
            bottom: -20px !important;
        }

        .service-hero .hero-content h1 {
            margin-bottom: 40px !important;
        }

        body .industries-scroll.col-2{padding:0 ;}

        .menu-wrapper ul {
  padding: 0;
}
        .menu-wrapper ul li{list-style: none;}

        .blog-main-page #main, body.single-post .site-main {
  padding-top: 80px;
}

.single-post .site-main ul {list-style-type: disc;}


        /* =============================== RESPONSIVE BREAKPOINTS =============================== */

        @media(max-height:740px) {
            .h-display {
                font-size: clamp(2.8rem, 5vw, 3.2rem);
            }

            .hero-content .text-lg {
                font-size: 1.1rem;
                line-height: 1.6;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .hero-content h1 {
                margin-bottom: 20px;
            }

            .hero-content .text-lg {
                margin-bottom: 25px;
            }

            .hero-btns {
                margin-bottom: 30px;
            }
        }

        /* 1199px Breakpoint - Container: 940px */
        @media (max-width: 1199px) {
            .container {
                max-width: 940px !important;
                padding: 0 30px;
            }

            .section-padding,
            .section-padding-lg {
                padding: 90px 0;
            }

            .h-display {
                font-size: clamp(2.5rem, 4.5vw, 2.8rem);
            }

            .h-section {
                font-size: clamp(1.8rem, 3vw, 2.4rem);
            }

            .footer-main {
                grid-template-columns: 1.1fr 1fr 1fr 1fr;
                gap: 40px;
            }

            .hero-content .text-lg {
                font-size: 1rem;

            }

            .hero-inner {
                gap: 30px;
            }

            .btn {
                padding: 14px 20px;
            }

            .cta-content {
                padding: 50px;
            }

            .blog-card h4 {
                padding: 15px 15px 16px !important;

            }

            .blog-card .d-flex {
                padding: 0 13px 0 !important;
            }

            .blog-card .post-date,
            .blog-card .btn-link {
                font-size: 0.8rem !important;
            }

            .service-hero .hero-content h1 {
                font-size: clamp(2rem, 4vw, 2.5rem) !important;
            }

            .blog-card:hover .btn-link {
                gap: 4px !important;
            }

            .blog-card {
                padding-bottom: 15px !important;
            }

            body .advanced-tech .sticky-left h2,
            body .advanced-tech .sticky-left p,
            body .advanced-tech .sticky-left .btn-primary {
                margin-left: 0;
                margin-right: 0;
            }

            body .advanced-tech .sticky-left h2 {
                font-size: clamp(1.85rem, 3vw, 2rem);
            }

            body .hero-title {
                font-size: clamp(36px, 5vw, 52px);
            }

            body .svc-panel {
                padding: 35px;
            }

            .container.ptb-80 {
                padding-top: 80px;
                padding-bottom: 80px;
            }

            body .casstudy-results .font-s-80 {
                font-size: 50px;
            }

            body .casstudy-results .font-s-30 {
                font-size: 22px;
            }

            body .casstudy-results {
                padding: 35px 25px 0;
            }

            body .casstudy-results img {
                width: 40%;
            }

            body {

                zoom: 1;
            }

            .menu-wrapper>ul>li>a {
                padding: 10px 10px;
            }

        }

        /* 1024px Breakpoint - Container: 740px */
        @media (max-width: 1024px) {
            .container {
                max-width: 740px !important;
                padding: 0 24px;
            }

            .section-padding,
            .section-padding-lg {
                padding: 80px 0;
            }

            #header,
            #header.scrolled {
                padding: 0;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }

            #header .container {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            #mobile-header {
                height: 64px;
                padding: 0 16px;
            }

            #mobile-header .mobile-logo img {
                max-width: 116px;
            }

            .mobile-head-cta {
                font-size: 14px;
                padding: 10px 15px;
            }

            .hero {
                min-height: auto;
            }

            .hero-inner {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                height: 360px;
            }

            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .process-grid::before,
            .process-grid::after {
                display: none;
            }

            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .industries-scroll {
                padding: 0 24px 20px;
            }

            .ind-card {
                flex: 0 0 calc(33.333% - 14px);
                min-height: 420px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .process-step {
                padding: 32px 24px;
            }

            .process-step .step-num {
                width: 96px;
                height: 96px;
                font-size: 2rem;
            }

            .cta-inner {
                border-radius: 28px;
                grid-template-columns: 1fr;
                gap: 0;
                min-height: auto;
                align-items: center;
            }

            .cta-content {
                text-align: center;
                padding: 60px 40px;
            }

            .cta-visual {
                height: 300px;
                align-self: auto;
            }

            .cta-visual img {
                height: 100%;
                border-radius: 0 0 28px 28px;
            }

            .cta-inner h2 {
                font-size: clamp(2rem, 4vw, 2.6rem);
            }

            .cta-btns {
                gap: 16px;
                justify-content: center;
            }

            .hero-bg-video {
                width: 100%;
                height: 120%;
                opacity: 0.2;
            }

            .stats-banner .stats-grid {
                gap: 0;
            }

            .stats-banner .stats-grid .stat-item:nth-child(2) {
                border-right: none;
            }

            .stats-banner .stats-grid .stat-item {
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            }

            .stats-banner .stats-grid .stat-item:nth-child(3),
            .stats-banner .stats-grid .stat-item:nth-child(4) {
                border-bottom: none;
            }

            .stats-banner .stats-grid .stat-item:nth-child(4) {
                background: none;
            }

            .stats-banner .stats-grid .stat-item:nth-child(3) {
                background: #fff;
            }

            .stats-banner .stats-grid .stat-item:nth-child(3)::before {
                opacity: 1;
            }

            .stats-banner .stats-grid .stat-item:nth-child(4)::before {
                opacity: 0;
            }

            .stats-banner-header {
                grid-template-columns: 1fr 1fr;
            }

            .why-card {
                padding: 36px 32px;
            }

            .why-card-tag {
                margin-bottom: 20px;
            }

            .why-card h3 {
                font-size: 1.35rem;
            }

            .cta-inner h2::after {
                right: 0;
                margin: 0 auto;
            }

            body .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            body .sp-column {
                padding: 30px;
            }

            body .advanced-tech .sticky-left h2,
            body .advanced-tech .sticky-left p,
            body .advanced-tech .sticky-left .btn-primary {
                margin-left: 0;
                margin-right: 0;
            }

            body .hero .container {

                grid-template-columns: 1fr;
            }

            body .fintech-hero-header {
                padding-top: 100px;
            }

            .fintech-hero-header .hero-eyebrow {
                justify-content: center;
            }

            body .hero-title {
                font-size: clamp(36px, 5vw, 44px);
            }

            .stats-section.fintech-states,
            body .why-netleon-section,
            body .fintech-expertise,
            body .danger-section,
            body .fintech-pad {
                padding: 50px 24px;

            }

            body .sec-header {
                margin-bottom: 30px !important;
            }

            body .process-step:last-child {
                margin-bottom: 0;
            }

            body .insights-updates .grid-three {
                grid-template-columns: repeat(1, 1fr);
            }

            body .blog-thumb img {
                width: 100% !important;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
                max-width: 100% !important;
            }

            body .sec-head {
                gap: 20px;
            }

            body .four-cards.mt-60 {
                margin-top: 20px;
            }

            body .casstudy-results .bg-black {
                padding: 15px;
            }

            body .casstudy-results .font-s-80 {
                font-size: 40px;
            }

            body .casstudy-results .font-s-30 {
                font-size: 18px;
            }

            body .casstudy-results {
                padding: 35px 15px 0;
            }
        }

        /* 768px Breakpoint - Container: 540px */
        @media (max-width: 768px) {
            .container {
                max-width: 540px !important;
                padding: 0 20px;
            }

            .section-padding,
            .section-padding-lg {
                padding: 70px 0;
            }

            .hero {
                padding: 92px 0 400px;
                min-height: auto;
            }

            .hero-bg-video {
                width: 100%;
                height: 70%;
                right: 0;
                bottom: -231px;
                object-position: center;
                left: 0;
                margin: auto;
                opacity: 1;
            }

            .hero-inner {
                gap: 24px;
            }

            .hero-content .overline {
                margin-bottom: 14px;
            }

            .hero-content h1 {
                margin-bottom: 14px;
            }

            .hero-content .text-lg {
                margin-bottom: 28px;
                font-size: 1rem;
                line-height: 1.7;
            }

            .hero-visual {
                height: 280px;
            }

            .hero-btns {
                flex-direction: row;
                align-items: stretch;
                margin-bottom: 32px;
                gap: 10px;
            }

            .hero-btns .btn {
                width: auto;
                justify-content: center;
                padding: 13px 14px;
            }

            .hero-metrics {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 10px;
                padding: 8px;
            }

            .hero-metric {
                border-radius: 12px;
                padding: 16px 14px;
            }

            .hero-metric .metric-value {
                font-size: 28px;
            }

            .hero-metric .metric-label {
                font-size: 11px;
            }

            #mobile-menu {
                padding: 16px;
            }

            #mobile-menu .mobile-menu-logo img {
                max-width: 160px;
            }

            .mobile-menu-list {
                margin-top: 24px;
            }

            .mobile-menu-list>li:last-child a {
                width: 100%;
                text-align: left;
            }

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

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

            .why-card {
                padding: 32px 28px;
                min-height: 300px;
            }

            .why-card h3 {
                font-size: clamp(1.3rem, 3.5vw, 1.5rem);
            }

            .why-card p {
                font-size: 0.92rem;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cases-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cases-image-panel {
                display: none;
            }

            .case-inline-image {
                display: block;
            }

            .case-tab.active .case-tab-content {
                max-height: 800px;
            }

            .cases-header {
                text-align: center;
                margin-bottom: 48px;
            }

            .industries-scroll {
                grid-template-columns: repeat(1, 1fr);
                gap: 16px;
                padding: 0 16px;
            }

            .ind-card {
                min-height: 380px;
            }

            .ind-card-content {
                padding: 30px 24px;
                width: 60%;
                border-radius: 0 20px 20px 0;
            }

            .ind-card-text {
                margin-bottom: 20px;
            }

            .ind-card-text h3 {
                font-size: 1.35rem;
                margin-bottom: 14px;
            }

            .ind-card-text h3::after {
                width: 40px;
                height: 2px;
                bottom: -6px;
            }

            .ind-card-text p {
                font-size: 0.88rem;
                line-height: 1.6;
            }

            .ind-card-btn span {
                padding: 10px 18px;
                font-size: 0.86rem;
            }

            .process-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .process-grid::before,
            .process-grid::after {
                display: none;
            }

            .process-step {
                padding: 28px 20px;
            }

            .process-step .step-num {
                width: 86px;
                height: 86px;
                font-size: 1.75rem;
                margin-bottom: 28px;
            }

            .process-step h3 {
                font-size: 1.15rem;
            }

            .process-step p {
                font-size: 0.92rem;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .footer-main .footer-tagline {
                grid-column: span 2;
            }

            .footer-locations {
                flex-direction: column;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

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

            .cta-inner {
                border-radius: 24px;
                grid-template-columns: 1fr;
                gap: 0;
                min-height: auto;
                align-items: center;
            }

            .cta-content {
                text-align: center;
                padding: 48px 28px;
            }

            .cta-visual {
                height: 250px;
                align-self: auto;
            }

            .cta-visual img {
                height: 100%;
                border-radius: 0 0 24px 24px;
            }

            .cta-inner h2 {
                font-size: clamp(1.75rem, 5vw, 2.2rem);
                margin-bottom: 18px;
            }

            .cta-inner .text-lg {
                font-size: 1rem;
                margin-bottom: 32px;
            }

            .cta-btns {
                flex-direction: row;
                gap: 12px;
                justify-content: center;
                flex-wrap: wrap;
            }

            .cta-btns .btn-white,
            .cta-btns .btn-outline {
                padding: 15px 32px;
                font-size: 0.9rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .stat-item .stat-number {
                font-size: 2.2rem;
            }

            .solution-card {
                min-height: inherit;
                padding: 36px 32px 65px;
            }

            .h-section br {
                display: none;
            }

            .h-section em {
                margin-left: 5px;
            }

            body .fintech-hero-header {

                min-height: inherit;
            }

            body .fintech-hero-header .hero-right {
                display: flex;
            }

            body .danger-visual,
            body .case-phone-wrapper {
                display: flex;
            }

            #webgl-bg {
                width: 100% !important;
            }

            body .stats-section::before {
                width: 100%;
            }

            body .casstudy-results {
                padding: 35px 15px 0 0;
            }

            body .casstudy-results .font-s-80 {
                font-size: 34px;
            }

            body .casstudy-results .font-s-30 {
                font-size: 16px;
            }

            body .casstudy-results img {
                width: 60%;
                margin-bottom: -19px;
            }

            body .casstudy-results .d-flex {

                padding-bottom: 20px;
            }

            body .casstudy-results {
                padding: 15px 15px 0 15px;
                flex-wrap: wrap;
                flex-direction: column-reverse;
            }

            body .casstudy-results>div {
                width: 100%;
            }


        }

        /* 575px Breakpoint */
        @media (max-width: 575px) {
            .container {
                padding: 0 18px;
            }

            .section-padding,
            .section-padding-lg {
                padding: 60px 0;
            }

            .hero-bg-video {
                width: 100%;
                height: 60%;
                right: 0;
                bottom: -200px;
                object-position: center;
                left: 0;
                margin: auto;
            }

            .hero-metrics {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

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

            .industries-scroll {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 0 16px;
            }

            .ind-card {
                min-height: 400px;
            }

            .ind-card-content {
                padding: 28px 20px;
                width: 70%;
                border-radius: 0 18px 18px 0;
            }

            .ind-card-text {
                margin-bottom: 18px;
            }

            .ind-card-text h3 {
                font-size: 1.25rem;
                margin-bottom: 12px;
            }

            .ind-card-text h3::after {
                width: 35px;
                height: 2px;
                bottom: -5px;
            }

            .ind-card-text p {
                font-size: 0.84rem;
                line-height: 1.58;
            }

            .ind-card-btn span {
                padding: 9px 16px;
                font-size: 0.83rem;
            }

            .cases-tabs {
                gap: 8px;
            }

            .case-tab {
                padding: 16px 18px;
            }

            .case-tab .case-tab-title {
                font-size: 0.9rem;
            }

            .case-tab.active .case-tab-title {
                font-size: 0.95rem;
            }

            .case-tab-content p {
                font-size: 0.85rem;
            }

            .case-tab.active .case-tab-content {
                max-height: 750px;
            }

            .case-inline-image {
                margin: 14px 0;
                border-radius: 10px;
            }

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

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

            .section-header {
                margin: 0 auto 40px;
            }

            .stats-banner .stats-grid .stat-item:nth-child(3)::before {
                opacity: 0;
            }

            .stats-banner .stats-grid .stat-item:nth-child(3):hover::before {
                opacity: 1;
            }

            .stats-banner .stats-grid .stat-item:nth-child(3) {
                background: none;
            }

            .stats-banner .stats-grid .stat-item:nth-child(4)::before {
                opacity: 1;
            }

            .stats-banner .stats-grid .stat-item:nth-child(4) {
                background: #fff;
            }


            .cta-content {
                text-align: center;
                padding: 25px;
            }

            .why-card {
                min-height: inherit;
            }

            body .section-header,
            body .cases-header {
                text-align: left;
                margin: 0 auto 30px;
            }

            body .section-title {
                margin-bottom: 30px;
            }

            body .why-choose-grid {
                margin-top: 30px;
                grid-template-columns: repeat(1, 1fr);
            }

            body .advanced-tech.py-80 {
                padding-top: 0;
            }

            body .section-header .text-lg {

                font-size: 1rem;
            }

            body .fintech-hero-header .hero-right {
                margin-top: 0;
            }

            body .stats-section.fintech-states .stat-item {
                padding: 30px;
                overflow: hidden;
            }

            .stats-section.fintech-states,
            body .why-netleon-section,
            body .fintech-expertise,
            body .danger-section,
            body .fintech-pad {
                padding: 50px 0;
            }

            body .fintech-hero-header {
                padding-bottom: 100px;
            }

            .sec-title.fit-tile {
                font-size: 32px !important;
            }

            body .danger-grid {
                margin-top: 0;
            }

            body .case-inner {
                padding: 25px;
            }

            .danger-section {
                overflow: hidden !important;
            }

            body .portfolio-banner {
                padding: 110px 0 0;
            }



            body .casestudy-content h3 {
                font-size: clamp(1.8rem, 4vw, 2.4rem);
            }

            body .py-80,
            body .py-60 {
                padding: 50px 0;
            }

            body .svc-panel {
                padding: 15px 35px 15px 15px;
            }

            .svc-box {
                margin: 0;
            }

            .svc-sticky {
                padding: 0px 15px !important;
            }

        }

        /* 480px Breakpoint */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .section-padding,
            .section-padding-lg {
                padding: 50px 0;
            }

            .h-display {
                font-size: clamp(1.88rem, 8.6vw, 2.2rem);
                line-height: 1.14;
            }

            .h-section {
                font-size: clamp(1.6rem, 6vw, 2rem);
            }

            .hero-content .overline {
                letter-spacing: 0.08em;
            }

            .hero-content .text-lg {
                font-size: 0.95rem;
                line-height: 1.65;
            }

            .hero-btns {
                margin-bottom: 24px;
                gap: 8px;
            }

            .hero-btns .btn {
                padding: 12px 16px;
                font-size: 0.8rem;
            }

            .hero-metrics {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

            .hero-metric {
                padding: 14px 10px;
            }

            .hero-metric .metric-value {
                font-size: 24px;
            }

            .hero-metric .metric-label {
                font-size: 10px;
            }

            .ind-card {
                min-height: 380px;
            }

            .ind-card-content {
                padding: 24px 18px;
                width: 85%;
                border-radius: 0 16px 16px 0;
            }

            .ind-card-text {
                margin-bottom: 16px;
            }

            .ind-card-text h3 {
                font-size: 1.4rem;
                margin-bottom: 10px;
            }

            .ind-card-text h3::after {
                width: 30px;
                height: 2px;
                bottom: -4px;
            }

            .ind-card-text p {
                font-size: 0.9rem;
                line-height: 1.55;
            }

            .ind-card-btn span {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .case-tab {
                padding: 14px 16px;
            }

            .case-tab .case-tab-title {
                font-size: 0.88rem;
            }

            .case-tab.active .case-tab-title {
                font-size: 0.92rem;
            }

            .cases-image-panel {
                min-height: 320px;
            }

            .case-tab.active .case-tab-content {
                max-height: 700px;
            }

            .case-inline-image {
                margin: 12px 0;
                border-radius: 8px;
            }

            .mobile-menu-level-3 {
                padding-left: 48px;
            }

            .mobile-menu-level-3 li a {
                font-size: 15px;
                padding: 9px 10px;
                gap: 8px;
            }

            .mobile-level3-icon {
                width: 30px;
                height: 30px;
            }

            .mobile-level3-icon svg {
                width: 15px;
                height: 15px;
            }

            .mobile-nested-toggle {
                width: 32px;
                height: 32px;
            }

            .mobile-sub-title {
                font-size: 16px;
            }

            .stats-banner-header {
                grid-template-columns: 1fr;
            }

            .stats-banner-left {
                padding: 60px 0 20px 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
                border-right: none;
            }

            .stats-banner-right {
                padding: 25px 0 40px 0;
            }

            .stat-item {
                padding: 30px;
            }

            .why-card {
                padding: 32px 28px;
                min-height: 280px;
            }

            .why-card-tag {
                padding: 6px 14px;
                font-size: 10px;
                margin-bottom: 18px;
            }

            .why-card h3 {
                font-size: 1.25rem;
            }

            .why-card p {
                font-size: 0.9rem;
            }

            .site-footer {
                padding: 50px 0 0;
            }

            .cta-btns {
                gap: 5px;
            }

            .cta-btns .btn {
                padding: 12px 15px;
                font-size: 0.820rem;
            }

            .footer-main {
                padding-bottom: 30px;
            }

            .footer-main .footer-tagline {

                margin-bottom: 15px;
            }

            .why-section .section-header {
                text-align: left;
                margin: 0 0 30px;

            }

            .footer-main {
                gap: 20px;
            }

            .industries-section .section-top {
                margin-bottom: 30px;
            }

            .insights-updates .heading {
                font-size: clamp(1.5rem, 3.5vw, 2.4rem) !important;

            }

            .insights-updates .btn {
                padding: 10px 18px;
            }

            .service-hero .hero-content h1 {

                margin-bottom: 40px !important;
            }

            .service-hero .hero-content h1 {
                font-size: clamp(1.75rem, 6vw, 2.2rem) !important;
            }

            body .sp-grid {
                margin-top: 30px;
            }

            .cases-section.section-padding {
                padding-top: 0;
            }

            body .sticky-left .font-s-18 {
                font-size: 1rem !important;
            }

            body .advanced-tech .sticky-left h2 {
                font-size: clamp(1.7rem, 3vw, 1.9rem);
            }

            body .advanced-tech .sticky-left {
                padding: 20px;
            }
        }

        /* 420px Breakpoint */
        @media (max-width: 420px) {
            .container {
                padding: 0 14px;
            }

            .section-padding,
            .section-padding-lg {
                padding: 40px 0;
            }

            .h-display {
                font-size: clamp(1.65rem, 8vw, 2rem);
            }

            .h-section {
                font-size: clamp(1.45rem, 5.5vw, 1.85rem);
            }

            .text-lg {
                font-size: 0.9rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }

            .hero-btns .btn {
                width: 100%;
                padding: 14px 20px;
                font-size: 0.85rem;
            }

            .hero-metrics {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .hero-metric {
                padding: 18px 16px;
            }

            .hero-metric .metric-value {
                font-size: 32px;
            }

            .hero-metric .metric-label {
                font-size: 12px;
            }

            .cta-content {
                padding: 36px 20px;
            }

            .footer-main {
                gap: 24px;
            }

            #mobile-menu .mobile-menu-logo img {
                max-width: 138px;
            }

            .mobile-menu-close {
                top: 8px;
                right: 10px;
                width: 34px;
                height: 34px;
                font-size: 28px;
            }

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

            .process-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .process-step {
                padding: 32px 24px;
            }

            .process-step .step-num {
                width: 90px;
                height: 90px;
                font-size: 1.9rem;
                margin-bottom: 24px;
            }

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

            .cta-inner {
                gap: 0;
                min-height: auto;
            }

            .cta-content {
                padding: 40px 24px;
            }

            .cta-visual {
                height: 220px;
                align-self: auto;
            }

            .cta-visual img {
                border-radius: 0 0 20px 20px;
                height: 100%;
            }

            .hero-bg-video {
                width: 100%;
                height: 50%;
                right: 0;
                bottom: -200px;
            }

            .ind-card {
                min-height: 320px;
            }

            .ind-card-text {
                padding: 24px 20px 0 20px;
                margin-bottom: 0;
            }

            .ind-card-btn {
                padding: 16px 20px;
            }

            .ind-card-btn span {
                font-size: 0.8rem;
            }

            .case-tab {
                padding: 12px 14px;
                border-radius: 0 8px 8px 0;
            }

            .case-tab .case-tab-title {
                font-size: 0.85rem;
            }

            .case-tab.active .case-tab-title {
                font-size: 0.9rem;
            }

            .case-tab-content .case-tag {
                font-size: 0.65rem;
                padding: 4px 10px;
            }

            .case-tab-content p {
                font-size: 0.82rem;
                line-height: 1.65;
            }

            .case-tab-content .case-detail-btn {
                padding: 7px 14px;
                font-size: 0.78rem;
            }

            .cases-image-panel {
                min-height: 280px;
            }

            .case-tab.active .case-tab-content {
                max-height: 650px;
            }

            .case-inline-image {
                margin: 10px 0;
                border-radius: 8px;
            }

            .mobile-accordian-header {
                padding: 15px 0;
            }

            .mobile-accordian-header>a {
                font-size: 16px;
            }

            .mobile-menu-level-3 {
                padding-left: 44px;
            }

            .mobile-menu-level-3 li a {
                font-size: 13px;
                padding: 8px 8px;
                gap: 8px;
            }

            .mobile-level3-icon {
                width: 28px;
                height: 28px;
                border-radius: 6px;
            }

            .mobile-level3-icon svg {
                width: 14px;
                height: 14px;
            }

            .mobile-nested-toggle {
                width: 30px;
                height: 30px;
            }

            .mobile-sub-icon {
                width: 36px;
                height: 36px;
            }

            .mobile-sub-icon svg {
                width: 18px;
                height: 18px;
            }

            .mobile-sub-title {
                font-size: 13.5px;
            }

            .ind-card-content {
                padding: 0;
            }

            .cta-btns {
                gap: 9px;
            }

            .insights-updates .heading {
                font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
            }

            .service-hero .hero-content h1 {
                font-size: clamp(1.5rem, 5.5vw, 1.9rem) !important;
                margin-bottom: 16px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 0.8rem;
                width: 100%;
                justify-content: center;
            }

            body .service-card p {
                font-size: 0.9rem;
            }



            body .tab-header {
                gap: 12px;
                margin-top: 20px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                margin-bottom: 20px;
            }
        }