 /* 3D Utilities for Hero Tilt */
        .perspective-container { perspective: 1500px; }
        .phone-mockup {
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            transform: rotateY(-18deg) rotateX(10deg) rotateZ(-3deg);
            box-shadow: 30px 50px 100px -20px rgba(0,0,0,0.3);
        }
        .phone-mockup:hover {
            transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.03);
            box-shadow: 0 20px 60px -10px rgba(0,0,0,0.2);
        }
         /* Sticky Navigation Transitions */
        #sticky-product-nav {
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        #sticky-product-nav.visible {
            transform: translateY(0);
        }

         /* wap Video Mockup Styling (iMac style) */
        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 40px 80px -15px rgba(0,0,0,0.15);
        }

        .imac-mockup {
            background: #1a1a1a;
            padding: 12px 12px 35px 12px;
            border-radius: 2rem;
            position: relative;
            border: 3px solid #222;
        }

        .imac-mockup::after {
            content: '';
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 45px;
            height: 4px;
            background: #444;
            border-radius: 2px;
        }

        /* WAP Banner Background */
        .wap-hero-bg {
            background-image: url('http://localhost/nynedge-new/nynedge/assests/images/wap-banner.png');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .wap-hero-fallback {
            background: radial-gradient(circle at center, rgba(239, 246, 255, 0.8) 0%, rgba(255, 252, 249, 1) 100%);
        }

        /* Custom checkmark list */
        .check-list li {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            color: #475569;
        }
        .check-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #3b82f6;
            font-size: 1.25rem;
        }
        
        /* Client Logo Grayscale Effect */
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* How it Works Animation */
        .step-path {
            stroke-dasharray: 10, 10;
            stroke-dashoffset: 1000;
            animation: walking-dash 30s linear infinite;
        }
        @keyframes walking-dash {
            to { stroke-dashoffset: 0; }
        }

        .step-circle {
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .step-circle:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
            border-color: #3b82f6;
        }
        .step-badge {
            transition: transform 0.3s ease;
        }
        .step-circle:hover .step-badge {
            transform: scale(1.2);
        }

        .advantage-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
        }

        .faq-item {
            border-bottom: 1px solid #e2e8f0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            cursor: pointer;
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 800;
            color: #0f172a;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: #64748b;
            font-weight: 500;
            line-height: 1.6;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-bottom: 1.5rem;
        }
        .faq-item.active i {
            transform: rotate(180deg);
        }

        /* Modal Backdrop */
        #meta-modal {
            visibility: hidden;
            opacity: 0;
            transition: all 0.4s ease;
        }
        #meta-modal.active {
            visibility: visible;
            opacity: 1;
        }

        /* Pricing Table Styles */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }
        .pricing-table th {
            background: linear-gradient(to bottom, #f1f7ff, #e3efff);
            color: #475569;
            font-weight: 800;
            text-transform: capitalize;
            padding: 12px 8px;
            border: 1px solid #cbd5e1;
            text-align: center;
        }
        .pricing-table td {
            padding: 10px 8px;
            border: 1px solid #e2e8f0;
            text-align: center;
            color: #64748b;
            font-weight: 500;
        }
        .pricing-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .pricing-table .market-cell {
            background-color: #f1f7ff;
            font-weight: 700;
            color: #475569;
            text-align: left;
            padding-left: 15px;
        }

         /* Prerequisite Card Styling from Attachment */
        .pre-req-card {
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            border: 1px solid #eef2f6;
        }
        .pre-req-header {
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            background-color: #f1f7f9;
        }
        .icon-circle {
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            flex-shrink: 0;
        }
        .pre-req-body {
            padding: 2rem;
            background-color: #f6fbfc;
            min-height: 120px;
        }

        /*lms*/
         .feature-card {
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }
        .feature-card:hover {
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
            border-color: var(--primary);
            transform: translateY(-4px);
        }
       .bg-lmsprimary { background-color: var(--lmsprimary); }
        .text-lmsprimary { color: var(--lmsprimary); }
        .border-lmsprimary { border-color: var(--lmsprimary); }
        .bg-lmsprimary-light { background-color: var(--lmsprimary-light); }
        .shadow-lmsprimary-soft { box-shadow: 0 20px 40px -15px rgba(37, 93, 114, 0.2); }
