:root {
            /* Colors */
            --bg-gray: #0d0d0c;
            --bg-card: rgba(39, 39, 42, 0.5);
            --bg-stats: #0a0a0a;
            --white: #ffffff;
            --black: #000000;
            --base-color: #fbc404;
            --border-ts: #4b4b4b;
            --border-line: #242323;
            --text-gray: #9b9b9b;
            --feature-title-hover: #fef3c7;
            --feature-description-hover: #d4d4d8;
            --corner-decoration-bg: rgba(245, 158, 11, 0.2);
            --stat-item-bg-start: #1a1a1a;
            --stat-item-bg-end: #0f0f0f;
            --stat-item-border: #2a2a2a;
            --stat-icon-gradient-start: #ffd700;
            --stat-icon-gradient-end: #ffb300;
            --arrow-btn-hover-fill: #f59e0b;
            --arrow-btn-hover-stroke: #000000;
            --gradient-overlay: #ffbc00;
        }

        /* Regular (400) */
        @font-face {
            font-family: "Urbanist";
            src: url("../fonts/urbanist-regular.ttf") format("truetype");
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        /* Medium (500) */
        @font-face {
            font-family: "Urbanist";
            src: url("../fonts/urbanist-medium.ttf") format("truetype");
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        /* SemiBold (600) */
        @font-face {
            font-family: "Urbanist";
            src: url("../fonts/urbanist-semibold.ttf") format("truetype");
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        /* Bold (700) */
        @font-face {
            font-family: "Urbanist";
            src: url("../fonts/urbanist-bold.ttf") format("truetype");
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        body {
            font-family: "Urbanist" !important;
            padding: unset;
        }

        .base-color {
            color: var(--base-color);
        }

        .border-line {
            border-color: var(--border-line);
        }

        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ffc730;
            font-weight: bold;
            font-size: 24px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #ffc730, #ff7043);
            border-radius: 50%;
            margin-right: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
        }

        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            padding: 20px 16px !important;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: #ffc730;
            /* background-color: rgba(255, 87, 34, 0.1); */
        }

        .navbar .navbar-nav .nav-link {
            font-size: 18px;
        }

        .dropdown-menu {
            background: white;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 20px;
            margin-top: 10px;
            min-width: 1100px;
            max-width: 1000px;
            display: none;
        }

        .dropdown-menu.show {
            display: block;
        }

        .dropdown-menu .dropdown-header {
            color: #666;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            padding: 0;
        }

        .dropdown-tabs {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 0;
            border-right: 1px solid #eee;
            min-width: 200px;
            padding-right: 20px;
        }

        .dropdown-main-container {
            display: flex;
            gap: 20px;
        }

        .cr-tab-item {
            padding: 10px 20px;
            color: #fff !important;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
            font-weight: 500;
            cursor: pointer;
            background: none;
            border-radius: 8px;
            margin-bottom: 5px;
        }

        .navbar .navbar-nav .dropdown .dropdown-menu a {
            color: #fff !important;
        }

        .cr-tab-item:hover {
            background: rgba(255, 87, 34, 0.05);
            color: #ffc730;
        }

        .cr-tab-item.active {
            color: #ffc730;
            border-left-color: #ffc730;
            background: #ffc73026;
        }

        .cr-tab-content {
            display: none;
            flex: 1;
            padding-left: 20px;
        }

        .cr-tab-content.active {
            display: block;
        }

        .dropdown-grid {
            display: flex;

            gap: 20px;
        }

        .dropdown-section {
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .dropdown-section h6 {
            color: #333;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .dropdown-item {
            padding: 8px 0;
            border: none;
            background: none;
            color: #666;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .dropdown-item {
            padding: 10px 15px;
            background: transparent;
            border: 1px solid white;
            border-radius: 15px;
        }

        .dropdown-item:hover {
            color: #ffc730;
            background: none;
            padding-left: 10px;
            transition: none !important;
        }

        .dropdown-toggle::after {
            font-family: "Font Awesome 6 Free";
            content: "\f107";
            border: none;
            margin-left: 8px;
            vertical-align: middle;
            font-weight: 900;
        }

        .btn-header {
            background: var(--base-color);
            border: none;
            color: #000;
            font-weight: 600;
            padding: 15px 24px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .btn-header:hover {
            transform: translateY(-2px);
            box-shadow: none;
            background-color: var(--base-color);
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
            color: #000;
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #333;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background-color: rgba(255, 87, 34, 0.1);
            color: #ffc730;
        }

        .hamburger {
            width: 24px;
            height: 18px;
            position: relative;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            height: 2px;
            width: 100%;
            background: #ccc;
            border-radius: 2px;
            position: absolute;
            transition: all 0.3s ease;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 8px;
        }

        .hamburger span:nth-child(3) {
            top: 16px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 8px;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 8px;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            backdrop-filter: blur(20px);
            z-index: 9999;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-header .logo {
            color: white;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-content {
            padding: 20px 0;
        }

        .mobile-menu-item {
            display: block;
            color: white;
            font-size: 18px;
            text-decoration: none;
            padding: 15px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .mobile-menu-item:hover {
            background: rgba(255, 87, 34, 0.1);
            border-left-color: #ffc730;
            color: #ffc730;
        }

        .mobile-menu-dropdown {
            color: white;
        }

        .mobile-menu-dropdown>a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-dropdown .dropdown-icon {
            transition: transform 0.3s ease;
        }

        .mobile-menu-dropdown.active .dropdown-icon {
            transform: rotate(180deg);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(0, 0, 0, 0.3);
        }

        .mobile-submenu.active {
            max-height: 100%;
        }

        .mobile-submenu a {
            padding: 12px 30px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }

        .mobile-submenu a:hover {
            color: #ffc730;
            background: rgba(255, 87, 34, 0.1);
        }

        .mobile-menu-cta {
            margin: 20px;

        }

        .mobile-menu-cta a {
            padding: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
            border-radius: 12px;
            text-align: center;
            background: var(--base-color);
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: block;
            width: 100%;
        }

        .mobile-menu-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
            color: #000;
        }

        .ct-wh {
            height: auto;
            width: 150px;
        }

        .navbar .navbar-nav .dropdown {
            position: unset;
        }

        header .navbar {
            position: relative;
        }

        .navbar .navbar-nav .dropdown .dropdown-menu {
            top: 80% !important;
            /* right: -118% !important; */
            /* max-width: 100%; */
            transform: translateX(-50%);
            left: 50%;
            right: auto;
            height: auto;
            width: 1150px !important;
        }

        .mobile-submenu {
            display: none !important;
            padding-left: 10px;
        }

        .mobile-submenu.active {
            display: block !important;
        }

        .dropdown-icon {
            float: right;
            transition: transform 0.3s ease;
        }

        .dropdown-icon.rotate {
            transform: rotate(180deg);
        }

        .tab-style-01 .nav-tabs .nav-link.active,
        .tab-style-01 .nav-tabs .nav-link.show,
        .tab-style-01 .nav-tabs .nav-link:hover {
            border-color: var(--base-color);
        }

        .bg-gray {
            background-color: var(--bg-gray);
        }

        .bg-slide {
            position: relative;
            border-top: 1px solid #997200;
            border-bottom: 1px solid #997200;
            background-color: #101010;
        }

        .bg-slide:after {
            content: "";
            position: absolute;
            height: 100%;
            width: 300px;
            background: linear-gradient(to left, #ffbc00 0, transparent 100% 100%);
            right: 0;
            top: 0;
            z-index: 1;
        }

        .bg-slide:before {
            content: "";
            position: absolute;
            height: 100%;
            width: 300px;
            background: linear-gradient(to right, #ffbc00 0, transparent 100% 100%);
            left: 0;
            top: 0;
            z-index: 1;
        }

        .bg-slide::before {
            background: linear-gradient(to right, var(--gradient-overlay) 0%, transparent 100%);
            left: 0;
        }

        .bg-slide::after {
            background: linear-gradient(to left, var(--gradient-overlay) 0%, transparent 100%);
            right: 0;
        }

        .btn-custom-black {
            border: 1px solid var(--white);
            color: var(--white);
            padding: 13px 20px;
        }

        .btn-custom-black:hover {
            color: var(--base-color);
            border-color: var(--base-color);
        }

        header {
            border-bottom: 2px solid var(--border-line);
            position: static !important;
            background-color: var(--black) !important;
        }

        header .navbar {
            position: relative;
        }

        header.sticky .navbar {
            -webkit-transform: translateY(-100%);
            transform: none;
        }

        header.header.sticky {
            position: sticky !important;
            z-index: 9999;
        }

        .navbar-expand-md {
            flex-wrap: nowrap;
            justify-content: space-between;
        }

        .interactive-banner-style-09 .image-content {
            padding: 0 10px;
        }

        .panddo {
            padding: 90px 0;
        }

        .panddo5 {
            padding: 8rem 0;
        }

        .banner-main {
            padding: 120px 0 120px;
            margin-top: unset;
            display: block;
            background-color: var(--bg-gray);
        }

        .page-section h1 {
            font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
            line-height: 1.2;
        }

        .page-section .highlight {
            color: var(--base-color);
            font-weight: 900;
        }

        .tab-style-01 .nav-tabs .nav-link {
            border: 1px solid var(--border-ts);
            border-radius: 50px;
            padding: 10px 2cap;
            color: #cacaca;
            transition: all 0.3s linear;
        }

        .cr-feature-tag {
            margin-bottom: 8px;
            background: unset;
            border-width: 2px;
        }

        .cr-feature-tag:hover {
            border-color: var(--base-color);
            background: var(--base-color);
            color: var(--black);
        }

        .cr-feature-tag:hover i {
            color: var(--black);
        }

        .feature-card {
            background: var(--bg-card);
            backdrop-filter: blur(8px);
            border: 1px solid var(--bg-card);
            border-radius: 16px;
            padding: 2rem;
            height: 100%;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            animation: fadeInUp 0.6s ease forwards;
        }

        .feature-card:hover {
            border-color: rgba(245, 158, 11, 0.3);
            background: rgba(39, 39, 42, 0.7);
            transform: translateY(-4px);
        }

        .card-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover .card-glow {
            opacity: 1;
        }

        .icon-container {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #fbbf24 0%, var(--base-color) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
            position: relative;
            z-index: 3;
        }

        .icon-container i {
            font-size: 1.75rem;
            color: var(--black);
        }

        .feature-title {
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
            position: relative;
            z-index: 3;
        }

        .feature-card:hover .feature-title {
            color: var(--feature-title-hover);
        }

        .feature-description {
            color: #a1a1aa;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            transition: color 0.3s ease;
            position: relative;
            z-index: 3;
        }

        .feature-card:hover .feature-description {
            color: var(--feature-description-hover);
        }

        .features-section {
            background-color: unset;
            border-radius: unset;
        }

        .cta-section {
            background: var(--white);
        }

        .learn-more-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--base-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            z-index: 3;
        }

        .learn-more-link:hover {
            color: var(--base-color);
        }

        .learn-more-link i {
            transition: transform 0.3s ease;
        }

        .learn-more-link:hover i {
            transform: translateX(4px);
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .feature-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .feature-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .feature-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .feature-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .feature-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .corner-decoration {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 8px;
            height: 8px;
            background: var(--corner-decoration-bg);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover .corner-decoration {
            opacity: 1;
        }

        .stat-item {
            padding: 40px 20px;
            /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
            border-radius: 15px;
            background: linear-gradient(145deg, var(--stat-item-bg-start), var(--stat-item-bg-end));
            border: 1px solid var(--stat-item-border);
            height: 100%;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.1);
            border-color: var(--base-color);
        }

        .stat-icon i {
            font-size: 3rem;
            color: var(--base-color);
            background: linear-gradient(135deg, var(--stat-icon-gradient-start), var(--stat-icon-gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--base-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .arrow-btn svg {
            transition: all 0.3s linear;
        }

        a.arrow-btn:hover svg {
            fill: var(--arrow-btn-hover-fill);
            stroke: var(--arrow-btn-hover-stroke);
        }

        .text-gray {
            color: var(--text-gray)
        }

        .accordion-style-01 .accordion-item {
            border-radius: unset !important;
            padding: 15px 20px;
        }

        .box-style-1 {
            padding: 50px;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border: 1px solid #2a2a2a;
            height: 100%;
            border-radius: 20px;
            box-sizing: border-box;
            width: 100%;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
        }

        /* features css */
        .bag-gradient {
            background:
                radial-gradient(ellipse at 15% 25%, rgba(251, 196, 4, 0.18) 0%, transparent 40%),
                radial-gradient(ellipse at 85% 75%, rgba(251, 196, 4, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 50%, rgba(251, 196, 4, 0.08) 0%, transparent 60%),
                linear-gradient(145deg, #000000 0%, #0a0a0a 30%, #1a1a1a 50%, #0a0a0a 70%, #000000 100%);
            overflow: hidden;
            position: relative;
        }

        .bag-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                repeating-conic-gradient(from 45deg at 50% 50%,
                    transparent 0deg,
                    rgba(251, 196, 4, 0.05) 20deg,
                    transparent 40deg);
            animation: rotate 60s linear infinite;
        }

        .bag-gradient .headline {
            opacity: 0;
            animation: fadeIn2 1s ease-out forwards;
            background: linear-gradient(135deg, #ffffff 0%, #fbc404 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .bag-gradient .attribution {
            color: rgba(251, 196, 4, 0.7);
            opacity: 0;
            animation: fadeIn2 1s ease-out 0.3s forwards;
        }

        .bag-gradient .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.6;
            animation: float2 20s infinite ease-in-out;
        }

        .bag-gradient .orb1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(251, 196, 4, 0.4) 0%, transparent 70%);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .orb2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 149, 0, 0.3) 0%, transparent 70%);
            bottom: -150px;
            right: -150px;
            animation-delay: 5s;
        }

        .bag-gradient .orb3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(251, 196, 4, 0.2) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 10s;
        }

        .bag-gradient .golden-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .bag-gradient .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #fbc404;
            border-radius: 50%;
            opacity: 0;
            animation: particle-float2 15s infinite linear;
        }

        @keyframes rotate2 {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes float2 {

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

            25% {
                transform: translate(30px, -30px) scale(1.1);
            }

            50% {
                transform: translate(-20px, 20px) scale(0.9);
            }

            75% {
                transform: translate(40px, 10px) scale(1.05);
            }
        }

        @keyframes particle-float2 {
            0% {
                opacity: 0;
                transform: translateY(100vh) translateX(0);
            }

            10% {
                opacity: 0.6;
            }

            90% {
                opacity: 0.6;
            }

            100% {
                opacity: 0;
                transform: translateY(-100vh) translateX(100px);
            }
        }

        @keyframes fadeIn2 {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* accordian design */
        .accordion-style-04 .accordion-item .accordion-header {
            border-bottom: 1px solid var(--border-ts);
        }

        .accordion-style-04 .accordion-item .accordion-header {
            border-bottom: 1px solid var(--border-ts);
        }

        .accordion-item.active-accordion .accordion-header {
            border: none;
        }

        .accordion-style-04 .accordion-item .accordion-body {
            border-bottom: 1px solid var(--border-ts);
        }

        .accordion-style-04 .accordion-item.active-accordion {
            -webkit-box-shadow: unset;
            box-shadow: unset;
            background: unset;
        }

        .cft_feature_card {
            background: #2b2b2b;
            border-radius: 16px;
            padding: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            filter: drop-shadow(2px 4px 6px black);
        }

        .clarro-btn-small {
            padding: 11px 20px !important;
        }

        /* features pages */
        .btn-trade {
            background: linear-gradient(145deg, var(--stat-item-bg-start), var(--stat-item-bg-end));
            color: var(--white);
            border: 1px solid rgba(251, 196, 4, 0.2);
        }

        .btn-trade i {
            color: var(--white);
        }

        .btn-trade:hover,
        .btn-trade:hover i {
            color: var(--base-color);
        }

        .cft_cta_button {
            text-transform: capitalize;
        }

        .cft_cta_button {
            background: var(--black);
        }

        .cft_cta_button:hover {
            background: #2a2a2a;
        }

        .bagde-custom {
            border: 1px solid var(--base-color);
        }

        .cta-text {
            position: relative;
            z-index: 111;
        }

        /* Responsive Design */
        /* Cap containers at 1600px on large screens */
        @media (min-width: 1600px) {

            .container,
            .container-lg,
            .container-md,
            .container-sm,
            .container-xl,
            .container-xxl {
                max-width: 1350px;
                width: 100%;
            }
        }

        @media (max-width: 1199px) {
            .mobile-menu-btn {
                display: block !important;
            }

            .navbar-collapse {
                display: none !important;
            }

            .collapse:not(.show) {
                display: none !important;
            }

            header .container-fluid,
            header .navbar-expand-lg {
                justify-content: space-between;
            }
        }

        /* Responsive Design */
        @media only screen and (max-width: 991px) {
            .accordion-collapse:not(.collapsed) {
                display: block;
            }

            .service-card {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .service-card__image {
                max-width: 100%;
            }
        }

        @media (min-width: 768px) {
            .navbar-expand-md {
                justify-content: space-between !important;
            }
        }

        @media only screen and (max-width: 768px) {
            body {
                padding: unset;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .gradient-top,
            .gradient-bottom {
                width: 256px;
                height: 256px;
            }

            .stat-item {
                padding: 30px 15px;
                margin-bottom: 20px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-icon i {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 1rem;
            }

            .service-card__content {
                min-width: 100%;
                min-height: 100%;
                flex-direction: column;
            }

            .banner-btn {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .panddo {
                padding: 60px 0 !important;
            }

            .animation-wrapt .item {
                padding: 20px 33px;
                flex: 0 0 349px;
            }

            .app-showcase {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .icon-container {
                width: 48px;
                height: 48px;
            }

            .animation-wrapt {
                flex-direction: column;
            }

            .animation-wrapt .item {
                flex: auto !important;
            }
        }

        @media (max-width: 576px) {
            .mobile-menu {
                width: 100%;
            }

            .panddo5 {
                padding: 6rem 0;
            }

            .bagde-custom {
                background-color: unset;
            }
        }

        @media screen and (max-width:480px) {}
