 :root {
            --axolot-primary: #2196F3; /* Blue */
            --axolot-secondary: #0e101e;
            --axolot-gradient: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
            --axolot-muted: #6b707f;
            --axolot-light-bg: #E3F2FD; /* Light Blue */
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--axolot-secondary);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Top Header Navigation */
        .navbar {
           /* background-color: transparent;*/
                background: #c3e1f7;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

            padding: 20px 0;
            transition: all 0.4s ease;
        }

        .navbar.sticky-nav {
            background-color: #ffffff !important;
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .nav-link {
            font-weight: 500;
            color: var(--axolot-secondary) !important;
            margin: 0 12px;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--axolot-primary) !important;
        }
    

        .btn-axolot {
            background: var(--axolot-gradient);
            color: #fff !important;
            border: none;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2); /* Updated shadow to blue */
        }

        .btn-axolot:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(33, 150, 243, 0.35); /* Updated hover shadow to blue */
        }

        /* Sections Common styling */
        section {
            padding: 100px 0;
        }

        .section-click-animated {
            animation: fadeInUp 0.7s ease forwards;
        }

        .nav-link-clicked {
            animation: tapLink 0.25s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes tapLink {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(0.97);
            }
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-tag {
            color: var(--axolot-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
        }

        /* Hero Demo-3 Frame */
        .hero-wrap {
            padding: 180px 0 120px 0;
            background-color: var(--axolot-light-bg);
            background-image: radial-gradient(#4a83ff10 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            position: relative;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 25px;
        }

        .hero-title span {
            color: var(--axolot-primary);
        }

        .text-primary {
            color: var(--axolot-primary) !important;
        }

        /* Core Features Cards */
        .feature-box {
            background: #fff;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--axolot-primary);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
        }

        .icon-shape {
            width: 70px;
            height: 70px;
            background: #2196F312; /* Light blue background */
            color: var(--axolot-primary); /* Blue icon color */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 28px;
            margin-bottom: 25px;
        }

        /* Services Framework Layout */
        .service-item-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        .service-item-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .service-img-wrapper img {
            width: 100%;
            height: 230px;
            object-fit: cover;
        }

        /* Frequently Asked Questions */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            border-radius: 8px !important;
            overflow: hidden;
        }

        .accordion-button {
            font-weight: 600;
            color: var(--axolot-secondary);
            padding: 20px;
        }

        .accordion-button:not(.collapsed) {
            background-color: #8ec0f808;
            color: var(--axolot-primary);
        }

        /* Pricing Matrices */
        .pricing-card {
            background: #fff;
            padding: 45px 35px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            text-align: center;
            position: relative;
            border: 1px solid #eee;
        }

        .pricing-card.popular {
            border-color: var(--axolot-primary);
        }

        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--axolot-primary);
            color: white;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 3px;
            font-weight: 600;
        }

        .price-value {
            font-size: 48px;
            font-weight: 700;
            color: var(--axolot-secondary);
        }

        /* Contact Section Form elements */
        .contact-box {
            background: #fff;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            padding: 50px;
        }

        .form-control {
            padding: 14px 20px;
            border-color: #eaeaea;
            border-radius: 5px;
        }

        .form-control:focus {
            border-color: var(--axolot-primary);
            box-shadow: 0 0 0 0.25rem rgba(33, 150, 243, 0.3);
        }

        /* Footer Elements */
        footer {
            background-color: #0b0c16;
            color: #a5a8b5;
            padding: 80px 0 30px 0;
        }

        .footer-heading {
            color: #fff;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a5a8b5;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--axolot-primary);
        }

        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: var(--axolot-gradient);
            color: white;
            border: none;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
        }


        /* Styles for Interactive Detailed Services Tabs */
        .custom-tab-btn {
            color: #6b707f !important;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .custom-tab-btn:hover {
            opacity: 1;
        }

        .custom-tab-btn .tab-icon-wrap {
            width: 55px;
            height: 55px;
            background: #f4f5f9;
            color: #4a5568;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .custom-tab-btn.active {
            opacity: 1 !important;
            color: #2196F3 !important;
            /* Changes text label to active color */
        }

        .custom-tab-btn.active .tab-icon-wrap {
            background: #2196F3;
            /* Active Blue or Red matching your layout theme */
            color: #ffffff;
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
        }

        .tab-label {
            font-size: 14px;
            font-weight: 600;
            display: block;
        }

        /* Custom Checkmarks List Layout styles matching original image */
        .custom-checkmark-list {
            padding-left: 0;
        }

        .custom-checkmark-list li {
            position: relative;
            padding-left: 28px;
            font-weight: 500;
            color: #4a5568;
            margin-bottom: 10px;
        }

        .custom-checkmark-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #2196F3;
            /* Accent color matching image ticks */
            position: absolute;
            left: 0;
            font-size: 16px;
        }

        .featured-services-section {
            padding: 100px 0;
            background-color: #ffffff;
            /* Subtle background decorative shapes overlay matching the references */
            background-image: radial-gradient(#4f6cf608 2px, transparent 2px),
                radial-gradient(#4f6cf605 1.5px, transparent 1.5px);
            background-size: 60px 60px;
            background-position: 0 0, 30px 30px;
        }

        .service-row-block {
            margin-bottom: 120px;
        }

        .service-row-block:last-child {
            margin-bottom: 0;
        }

        /* Number Badge Layout Styling */
        .number-badge {
            width: 45px;
            height: 45px;
            background-color: #2196F3;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 25px;
            box-shadow: 0 6px 15px rgba(79, 108, 246, 0.25);
        }

        .service-heading {
            font-size: 32px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
        }

        .service-description {
            color: #64748b;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        /* Custom Vector Style Ticks List */
        .feature-ticks-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .feature-ticks-list li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 14px;
            font-weight: 500;
            font-size: 15px;
            color: #4f566b;
            transition: transform 0.2s ease;
        }

        .feature-ticks-list li:hover {
            transform: translateX(4px);
        }

        .feature-ticks-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #2196F3;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 15px;
        }

        /* Image Containers wrapper subtle animations */
        .service-graphic-wrap img {
            max-width: 100%;
            height: auto;
            transition: transform 0.4s ease;
        }

        .service-graphic-wrap:hover img {
            transform: translateY(-6px);
        }