 
        /* ========== BODHI PATH COMPLETE CSS ========== */
        :root {
            --primary-saffron: #D4AF37;
            --primary-maroon: #8B2635;
            --primary-gold: #C9A03D;
            --primary-sand: #E8D5B7;
            --primary-dark: #2C1810;
            --primary-light: #FFF8F0;
            --accent-orange: #E67E22;
            --accent-teal: #2C6E6E;
            --whatsapp-green: #25D366;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-light);
            color: #3E2C1F;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, .logo-text, .main-title-elegant {
            font-family: 'Cormorant Garamond', 'Playfair Display', serif;
        }

        /* Spinner */
        #spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-light);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .elegant-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--primary-sand);
            border-top: 3px solid var(--primary-saffron);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(var(--primary-sand) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            pointer-events: none;
            z-index: -1;
        }

        /* Navbar */
        .navbar-elegant {
            background: linear-gradient(135deg, #2C1810 0%, #5C3A1E 100%);
            padding: 0.8rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            margin-right: auto;
        }
        
        .navbar-brand img {
            height: 100px;
            width: auto;
        }
        
        .nav-link-elegant {
            color: #FFE8D6 !important;
            font-weight: 500;
            margin: 0 0.2rem;
            transition: all 0.3s;
        }
        .nav-link-elegant:hover, .nav-link-elegant.active {
            color: var(--primary-saffron) !important;
        }
        
        .btn-primary-elegant {
            background: linear-gradient(135deg, var(--primary-saffron), var(--primary-gold));
            color: #2C1810;
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
        }
        .btn-primary-elegant:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            color: #2C1810;
        }
        .btn-outline-elegant {
            background: transparent;
            border: 2px solid var(--primary-saffron);
            color: var(--primary-saffron);
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-outline-elegant:hover {
            background: var(--primary-saffron);
            color: #2C1810;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .navbar-brand img { height: 40px; }
            .btn-primary-elegant, .btn-outline-elegant { padding: 6px 16px; font-size: 0.85rem; }
        }

        /* Hero Section */
        .hero-elegant {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-image-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.45) saturate(1.2);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 4rem 1rem;
        }
        .hero-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 1rem;
        }
        .hero-moon-icon {
            font-size: 2rem;
            color: var(--primary-saffron);
        }
        .urdu-text {
            font-size: 1.4rem;
            font-weight: 500;
            letter-spacing: 2px;
        }
        .main-title-elegant {
            font-size: 5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-saffron), #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        .title-sub-elegant {
            font-size: 1.5rem;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
        }
        .hero-desc-elegant {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .main-title-elegant { font-size: 2.8rem; }
            .title-sub-elegant { font-size: 1rem; }
            .hero-desc-elegant { font-size: 0.95rem; }
        }

        /* Stats Section */
        .stats-elegant {
            background: rgba(255,248,240,0.95);
            backdrop-filter: blur(10px);
            border-radius: 60px;
            padding: 1.2rem;
            margin-top: -40px;
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(212,175,55,0.3);
        }
        .stat-number-elegant {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
        }

        /* Glass Card */
        .glass-card-elegant {
            background: rgba(255,248,240,0.9);
            backdrop-filter: blur(8px);
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border: 1px solid rgba(212,175,55,0.2);
            transition: all 0.3s;
        }
        .glass-card-elegant:hover {
            transform: translateY(-5px);
        }

        /* Section Header */
        .section-header-elegant {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .section-header-elegant h2 {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-maroon), var(--primary-saffron));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        .section-underline-elegant {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-saffron), var(--primary-gold));
            margin: 0 auto;
            border-radius: 3px;
        }

        /* Apps Grid - 4 columns per row */
        .apps-grid-elegant {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .app-card-elegant {
            background: white;
            border-radius: 28px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid #f0e6d8;
        }
        .app-card-elegant:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.12);
        }
        .app-icon-elegant {
            width: 120px;
            margin-bottom: 1.2rem;
        }
        .app-card-elegant h6 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }
        .btn-app-elegant {
            display: inline-block;
            font-size: 0.85rem;
            background: #F5EDE3;
            padding: 8px 16px;
            border-radius: 30px;
            text-decoration: none;
            color: var(--primary-maroon);
            margin: 4px;
            transition: 0.2s;
            font-weight: 500;
        }
        .btn-app-elegant i {
            margin-right: 6px;
        }
        .btn-app-elegant:hover {
            background: var(--primary-saffron);
            color: white;
        }

        @media (max-width: 992px) {
            .apps-grid-elegant {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .apps-grid-elegant {
                grid-template-columns: 1fr;
            }
        }

        /* Feature Image Clear */
        .feature-image-clear {
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #FFF5E6, #F5EDE3);
            padding: 4rem 0;
        }
        .pricing-grid-elegant {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
        }
        .pricing-card-professional {
            background: white;
            border-radius: 28px;
            padding: 1.8rem;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            border-top: 4px solid var(--primary-saffron);
        }
        .pricing-card-professional:hover {
            transform: translateY(-8px);
        }
        .price-wrapper {
            margin-bottom: 1.5rem;
        }
        .price-currency {
            font-size: 1.5rem;
            vertical-align: top;
            font-weight: 600;
        }
        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-maroon);
        }
        .price-period {
            font-size: 0.9rem;
            color: #888;
        }
        .price-features-elegant {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
        }
        .price-features-elegant li {
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }
        .price-features-elegant li i {
            color: var(--primary-saffron);
            margin-right: 10px;
        }
        .btn-price-professional {
            background: linear-gradient(135deg, var(--primary-maroon), #5C2A1A);
            color: white;
            padding: 10px 30px;
            border-radius: 40px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn-price-professional:hover {
            transform: scale(1.02);
            background: var(--primary-saffron);
            color: #2C1810;
        }

        /* FAQ Section Styles */
        .faq-section-new {
            background: linear-gradient(145deg, #FFF8F0, #FDF3E5);
            padding: 4rem 0;
        }
        
        .faq-container-new {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item-new {
            background: white;
            border-radius: 24px;
            margin-bottom: 1.2rem;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(212,175,55,0.15);
        }
        
        .faq-item-new:hover {
            box-shadow: 0 10px 30px rgba(139,38,53,0.1);
            transform: translateY(-2px);
        }
        
        .faq-question-new {
            padding: 1.3rem 1.8rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            background: white;
            transition: all 0.3s ease;
            color: var(--primary-dark);
        }
        
        .faq-question-new:hover {
            background: linear-gradient(90deg, #FFF5E6, white);
        }
        
        .faq-question-new .question-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary-saffron), var(--primary-gold));
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #2C1810;
            font-size: 0.9rem;
        }
        
        .faq-question-new .question-text {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .faq-question-new .fa-chevron-down {
            color: var(--primary-saffron);
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item-new.active .fa-chevron-down {
            transform: rotate(180deg);
        }
        
        .faq-answer-new {
            padding: 0 1.8rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: #5a4a3a;
            line-height: 1.7;
            font-size: 0.98rem;
            background: #FEFAF5;
            border-top: 1px solid transparent;
        }
        
        .faq-item-new.active .faq-answer-new {
            padding: 1.2rem 1.8rem 1.5rem 1.8rem;
            max-height: 300px;
            border-top-color: rgba(212,175,55,0.3);
        }
        
        .faq-answer-new p {
            margin: 0;
        }
        
        .faq-answer-new i {
            color: var(--primary-saffron);
            margin-right: 8px;
        }
        
        @media (max-width: 768px) {
            .faq-question-new {
                padding: 1rem 1.2rem;
                font-size: 0.95rem;
            }
            .faq-question-new .question-icon {
                width: 26px;
                height: 26px;
                font-size: 0.75rem;
            }
            .faq-item-new.active .faq-answer-new {
                padding: 1rem 1.2rem 1.2rem 1.2rem;
            }
        }

        /* Feature Grid - Enlarged Styles */
        .feature-grid-elegant {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
            margin: 2rem 0;
        }
        
        .feature-item-elegant {
            text-align: center;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .feature-item-elegant:hover {
            transform: translateY(-8px);
        }
        
        .feature-item-elegant img {
            width: 110px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
        }
        
        .feature-item-elegant:hover img {
            filter: drop-shadow(0 8px 15px rgba(212,175,55,0.3));
        }
        
        .feature-item-elegant div {
            font-weight: 700;
            color: var(--primary-maroon);
            font-size: 1.3rem;
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .feature-grid-elegant {
                gap: 1.8rem;
            }
            .feature-item-elegant img {
                width: 75px;
            }
            .feature-item-elegant div {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .feature-grid-elegant {
                gap: 1.2rem;
            }
            .feature-item-elegant img {
                width: 60px;
            }
            .feature-item-elegant div {
                font-size: 0.85rem;
            }
        }

        /* Footer */
        .footer-elegant {
            background: linear-gradient(135deg, #2C1810, #1A0F0A);
            color: #E8D5B7;
            padding: 3rem 0 1rem;
            margin-top: 2rem;
        }
        .footer-heading-elegant {
            color: var(--primary-saffron);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links-elegant {
            list-style: none;
            padding: 0;
        }
        .footer-links-elegant li {
            margin-bottom: 0.6rem;
        }
        .footer-links-elegant a {
            color: #E8D5B7;
            text-decoration: none;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .footer-links-elegant a:hover {
            color: var(--primary-saffron);
            padding-left: 5px;
        }
        .footer-links-elegant i {
            margin-right: 8px;
            font-size: 0.8rem;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(232,213,183,0.2);
            font-size: 0.85rem;
        }

        /* WhatsApp Float */
        .whatsapp-float-elegant {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
            transition: 0.2s;
        }
        .whatsapp-float-elegant:hover {
            transform: scale(1.05);
        }
        .back-to-top-elegant {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: var(--primary-saffron);
            color: #2C1810;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 100;
            opacity: 0.8;
            transition: 0.2s;
        }
        .back-to-top-elegant:hover {
            opacity: 1;
            transform: translateY(-3px);
        }
    

        html, body {
    overflow-x: hidden;
}