
        /* Reset default margins and ensure box-sizing */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Light Mode Colors */
        :root {
            --aplexia-bg-color: #ffffff;
            --aplexia-text-color: #333333;
            --aplexia-card-bg: #f8f9fa;
            --aplexia-border-color: #e0e0e0;
            --aplexia-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
        }

        /* Dark Mode Colors */
        .theme-dark {
            --aplexia-bg-color: #000000;
            --aplexia-text-color: #f0f0f0;
            --aplexia-card-bg: #1e1e1e;
            --aplexia-border-color: #333333;
        }

        /* Apply theme variables */
        body {
            background-color: var(--aplexia-bg-color);
            color: var(--aplexia-text-color);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .aplexia-page-banner,
        .aplexia-about-section,
        .aplexia-services-section,
        .aplexia-process-section,
        .aplexia-cta-section {
            background-color: var(--aplexia-bg-color);
            color: var(--aplexia-text-color);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Theme Switcher Styles */
        .aplexia-theme-switcher {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .aplexia-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .aplexia-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .aplexia-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: background-color 0.4s;
            border-radius: 34px;
        }

        .aplexia-slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: transform 0.4s;
            border-radius: 50%;
        }

        .aplexia-switch input:checked+.aplexia-slider {
            background: var(--aplexia-gradient);
        }

        .aplexia-switch input:checked+.aplexia-slider:before {
            transform: translateX(26px);
        }

        /* Service Panel Styles */
        .service-panel {
            background-color: var(--aplexia-card-bg);
            border: 1px solid var(--aplexia-border-color);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-panel:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Icon Holder Animation */
        .icon-holder {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--aplexia-gradient);
            border-radius: 50%;
            margin-bottom: 15px;
        }

        .pulse-effect {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(253, 176, 132, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(253, 176, 132, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(253, 176, 132, 0);
            }
        }

        /* Animated Transition for Features */
        .animated-transition {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

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

        /* Services Navigation Button Styles */
        .btn-outline-gradient {
            border: 2px solid transparent;
            border-image: var(--aplexia-gradient) 1;
            color: var(--aplexia-text-color);
            padding: 10px 20px;
            text-decoration: none;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .btn-outline-gradient:hover {
            background: var(--aplexia-gradient);
            color: #ffffff;
        }

        /* Gradient Text */
        .gradient-text {
            background: var(--aplexia-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Section Specific Styles */
        .aplexia-page-banner {
            padding: 100px 0;
            background-size: cover;
            background-position: center;
        }

        .banner-content h2 {
            color: #ffffff;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .banner-content ul {
            list-style: none;
            padding: 0;
        }

        .banner-content ul li {
            display: inline;
            color: #ffffff;
            margin-right: 10px;
        }

        .banner-content ul li a {
            color: #ffffff;
            text-decoration: none;
        }

        .section-heading {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .section-tag {
            display: block;
            color: #06b6d4;
            font-size: 1rem;
            margin-bottom: 10px;
            text-align: center
        }

        .section-text {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .divider-bar {
            width: 60px;
            height: 4px;
            background: var(--aplexia-gradient);
            margin: 20px auto;
            /* top/bottom 20px, left/right auto */
        }

        .icon-container {
            width: 50px;
            height: 50px;
            background: var(--aplexia-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .primary-image {
            max-width: 100%;
            border-radius: 8px;
        }

        .expertise-badge {
            background: var(--aplexia-gradient);
            color: #ffffff;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            margin-top: 20px;
        }

        .services-items {
            list-style: none;
            padding: 0;
            margin-top: 10px;
        }

        .services-items li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .services-items li i {
            margin-right: 8px;
            color: #06b6d4;
        }

        .service-overlay {
            margin-top: 15px;
        }

        .service-link {
            color: #06b6d4;
            text-decoration: none;
            font-weight: bold;
        }

        .service-link:hover {
            color: #2563eb;
        }

        .process-block {
            text-align: center;
            padding: 20px;
            background: var(--aplexia-card-bg);
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .step-count {
            font-size: 1.5rem;
            color: #06b6d4;
            margin-bottom: 10px;
        }

        .step-symbol {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .step-connector {
            margin-top: 10px;
            color: #06b6d4;
        }

        .cta-details h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .btn-gradient {
            background: var(--aplexia-gradient);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .btn-gradient i {
            margin-left: 8px;
        }

        .cta-background {
            background: var(--aplexia-gradient);
            opacity: 0.1;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        @media only screen and (max-width: 767px) {
            a.btn.btn-outline-gradient.mx-2 {
                width: 100%;
                /* Full width on mobile */
                max-width: 180px;
                /* But not wider than this */
                display: block;
                /* Stack vertically */
                margin-left: auto;
                margin-right: auto;
                padding: 10px 5px;
                /* Adjust padding for mobile */
                font-size: 14px;
                /* Slightly smaller text */
            }
        }
/* ai-devedlopement services styles */

