/* Page Specific Styles */
        .mobile-apps-hero {
            padding-top: 80px;
            min-height: 40vh;
            display: flex;
            align-items: center;
            position: relative;
            margin-bottom: 1rem;
        }

        .mobile-apps-hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-content-left {
            padding-right: 2rem;
        }

        .hero-image-right {
            position: relative;
            height: 400px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-right::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle,
                rgba(0, 240, 255, 0.2) 0%,
                rgba(119, 0, 255, 0.15) 40%,
                transparent 70%
            );
            filter: blur(30px);
            animation: heroGlow 4s ease-in-out infinite;
        }

        .hero-image-right img {
            position: relative;
            max-width: 100%;
            height: 100%;
            object-fit: contain;
            animation: floatImage 6s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes heroGlow {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        @keyframes floatImage {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            z-index: -1;
        }

        .mobile-apps-hero .futuristic-text {
            font-size: 3rem;  /* Reduced from 4.5rem */
            margin-bottom: 0.5rem; /* Reduced from 2rem */
        }

        .mobile-apps-hero .subtitle {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        @media screen and (max-width: 768px) {
            .mobile-apps-hero {
                padding-top: 60px;
                min-height: 20vh;
            }

            .mobile-apps-hero .futuristic-text {
                font-size: 1.8rem;
                letter-spacing: 2px;
                line-height: 1.2;
            }

            .app-showcase {
                padding: 1rem;
                width: 100%;
            }

            .app-card {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1rem;
                width: 100%;
                margin: 0;
            }

            .device-preview {
                height: 400px;
                width: 100%;
                margin: 0;
                padding: 0;
            }

            .app-content {
                padding: 1rem 0;
                width: 100%;
                text-align: left;
            }

            .app-features {
                width: 100%;
                margin: 1rem 0;
            }

            .tech-stack {
                justify-content: flex-start;
                width: 100%;
            }

            .app-card {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1rem;
                margin: 0 auto;
                max-width: 450px;
            }

            .device-preview {
                height: 400px;
                margin: 0 auto;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .device-preview img {
                max-width: 90%;
                height: auto;
                object-fit: contain;
            }

            .app-content {
                text-align: center;
                padding: 1rem 0.5rem;
            }

            .app-content h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .app-content p {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .app-features {
                list-style: none;
                margin: 0.5rem 0;
                max-width: 90%;
                margin: 1rem auto;
            }

            .app-features li {
                color: #a0a0ff;
                margin-bottom: 0.5rem;
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 0.9rem;
                justify-content: flex-start;
                text-align: left;
                padding-left: 1rem;
            }

            .app-features li i {
                color: #00f0ff;
                font-size: 1.2rem;
            }

            .tech-stack {
                display: flex;
                gap: 0.5rem;
                margin-top: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
                padding: 0.5rem;
            }

            .tech-badge {
                background: rgba(0, 240, 255, 0.1);
                padding: 0.3rem 0.8rem;
                border-radius: 20px;
                color: #00f0ff;
                font-size: 0.8rem;
                font-family: 'Orbitron', sans-serif;
            }

            .mobile-apps-hero .container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1rem;
            }

            .hero-content-left {
                padding-right: 0;
            }

            .hero-image-right {
                height: 300px;
                order: -1;
            }
        }

        @media screen and (max-width: 480px) {
            .mobile-apps-hero {
                padding-top: 50px;
            }

            .mobile-apps-hero .futuristic-text {
                font-size: 1.5rem;
                letter-spacing: 1px;
                margin-bottom: 0.5rem;
            }

            .app-card {
                max-width: 100%;
            }

            .device-preview {
                height: 350px;
            }

            .app-content {
                padding: 1rem 0.25rem;
            }
        }

        .app-showcase {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem; /* Reduced from 4rem */
            padding: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .app-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            position: relative;
            padding: 1rem; /* Reduced from 2rem */
        }

        .app-card:nth-child(even) {
            grid-template-columns: 1fr 1fr;
            clip-path: polygon(2% 5%, 100% 0, 98% 100%, 0 95%);
        }

        .app-card:nth-child(odd) {
            direction: rtl;
        }

        .app-card:nth-child(odd) .device-preview,
        .app-card:nth-child(odd) .app-content {
            direction: ltr;
        }

        .device-preview {
            position: relative;
            width: 100%;
            height: 650px;  /* Increased from 500px */
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .device-preview::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: radial-gradient(
                circle,
                rgba(0, 240, 255, 0.15) 0%,
                rgba(119, 0, 255, 0.1) 50%,
                transparent 70%
            );
            filter: blur(20px);
            border-radius: 50%;
            z-index: 0;
            animation: glowPulse 3s ease-in-out infinite;
        }

        .device-preview img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 0;
        }

        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        .app-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 1rem; /* Reduced from 2rem */
        }

        .app-content h3 {
            color: #00f0ff;
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .app-content p {
            color: #a0a0ff;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .app-features {
            list-style: none;
            margin: 0.5rem 0; /* Reduced from 1rem */
        }

        .app-features li {
            color: #a0a0ff;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .app-features li i {
            color: #00f0ff;
            font-size: 1.2rem;
        }

        .tech-stack {
            display: flex;
            gap: 1rem;
            margin-top: 1rem; /* Reduced from 1.5rem */
            flex-wrap: wrap;
        }

        .tech-badge {
            background: rgba(0, 240, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            color: #00f0ff;
            font-size: 0.9rem;
            font-family: 'Orbitron', sans-serif;
        }

        @media screen and (max-width: 768px) {
            .app-card {
                grid-template-columns: 1fr;
                clip-path: none;
            }

            .app-card:nth-child(even) {
                grid-template-columns: 1fr;
                clip-path: none;
            }

            .app-card:nth-child(odd) {
                direction: ltr;
            }

            .device-preview {
                height: 400px;
                margin: 0 auto;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .device-preview img {
                max-width: 90%;
                height: auto;
                object-fit: contain;
            }

            .app-showcase {
                gap: 1.5rem; /* Reduced for mobile */
                padding: 1.5rem 1rem;
            }

            .hero-image {
                object-position: center;
            }
        }

        .quote-btn {
            background: linear-gradient(135deg, #ff6b9d, #c44569);
            color: #ffffff;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            width: 100%;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(255, 107, 157, 0.2);
        }

        .quote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(255, 107, 157, 0.3);
        }

        .quote-btn i {
            transition: transform 0.3s ease;
        }

        .quote-btn:hover i {
            transform: translateX(4px);
        }

        @media screen and (max-width: 768px) {
            .quote-btn {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
                margin-top: 1rem;
            }
        }

        .hero-cta {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'Orbitron', sans-serif;
        }

        .feature-item i {
            font-size: 1.5rem;
            color: #00f0ff;
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }

        .feature-item span {
            color: #a0a0ff;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .hero-description {
            color: #a0a0ff;
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 1.5rem 0;
            max-width: 600px;
        }

        @media screen and (max-width: 768px) {
            .hero-features {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin: 1.5rem 0;
            }

            .feature-item {
                justify-content: center;
            }

            .hero-description {
                text-align: center;
                font-size: 1rem;
                margin: 1rem auto;
            }
        }

