﻿
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #1a1a2e; }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #F97316, #FBBF24); border-radius: 10px; }
        
        /* Animations */
        @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
        @keyframes floatSlow { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-15px) rotate(5deg); } }
        @keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); } 50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.6); } }
        @keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slideLeft { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes slideRight { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
        @keyframes rotateOm { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        @keyframes sparkle { 0%, 100% { opacity: 0; transform: scale(0); } 50% { opacity: 1; transform: scale(1); } }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes borderGlow { 0%, 100% { border-color: rgba(249, 115, 22, 0.3); } 50% { border-color: rgba(249, 115, 22, 0.8); } }
        
        .float { animation: float 6s ease-in-out infinite; }
        .float-slow { animation: floatSlow 8s ease-in-out infinite; }
        .pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
        .shimmer { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); background-size: 200% 100%; animation: shimmer 3s infinite; }
        .gradient-shift { background-size: 200% 200%; animation: gradientShift 5s ease infinite; }
        
        /* Scroll Animations */
        .animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
        .animate-on-scroll.from-left { transform: translateX(-40px); }
        .animate-on-scroll.from-left.visible { transform: translateX(0); }
        .animate-on-scroll.from-right { transform: translateX(40px); }
        .animate-on-scroll.from-right.visible { transform: translateX(0); }
        .animate-on-scroll.scale-up { transform: scale(0.85); }
        .animate-on-scroll.scale-up.visible { transform: scale(1); }
        
        /* Hero Section */
        .hero-bg {
            background: linear-gradient(135deg, #1a0a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.06) 0%, transparent 40%),
                        radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
            animation: rotateOm 60s linear infinite;
        }
        
        /* Mandala Pattern */
        .mandala-bg {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            border: 1px solid rgba(249, 115, 22, 0.1);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .mandala-bg::before, .mandala-bg::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(251, 191, 36, 0.08);
        }
        .mandala-bg::before { width: 80%; height: 80%; top: 10%; left: 10%; }
        .mandala-bg::after { width: 60%; height: 60%; top: 20%; left: 20%; }
        
        /* Glassmorphism */
        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .glass-white {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        /* Service Cards */
        .service-card {
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
            transition: left 0.7s;
        }
        .service-card:hover::before { left: 100%; }
        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 60px rgba(249, 115, 22, 0.15), 0 0 0 1px rgba(249, 115, 22, 0.2);
        }
        
        /* Nav */
        .nav-scrolled {
            background: rgba(26, 10, 46, 0.95) !important;
            backdrop-filter: blur(20px) !important;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #F97316, #EA580C, #F59E0B);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .btn-primary:hover::after { opacity: 1; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4); }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #F97316;
            transform: translateY(-2px);
        }
        
        /* Section Divider */
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #F97316, #FBBF24, #F97316, transparent);
            margin: 0 auto;
            width: 200px;
        }
        
        /* Om Symbol */
        .om-symbol {
            font-size: 3rem;
            background: linear-gradient(135deg, #F97316, #FBBF24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Review Cards */
        .review-card {
            transition: all 0.4s ease;
            border: 1px solid rgba(249, 115, 22, 0.1);
        }
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(249, 115, 22, 0.12);
            border-color: rgba(249, 115, 22, 0.3);
        }
        
        /* Instagram Grid */
        .insta-item {
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
        }
        .insta-item:hover { transform: scale(1.05); }
        .insta-item::after {
            content: '\f16d';
            font-family: 'Font Awesome 6 Brands';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(249, 115, 22, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .insta-item:hover::after { opacity: 1; }
        
        /* Floating Particles */
        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        
        /* Counter Animation */
        .counter-box {
            position: relative;
            overflow: hidden;
        }
        .counter-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #F97316, #FBBF24);
        }
        
        /* Process Steps */
        .process-step { position: relative; }
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #F97316, transparent);
        }
        .process-step:last-child::after { display: none; }
        
        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            animation: pulse-glow 2s infinite;
            transition: transform 0.3s;
            cursor: pointer;
        }
        .whatsapp-float:hover { transform: scale(1.15) rotate(10deg); }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .mobile-menu.open { transform: translateX(0); }
        
        /* Testimonial Slider */
        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        /* Loading screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a0a2e, #16213e);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: opacity 0.35s, visibility 0.35s;
        }
        .loading-screen.hidden { opacity: 0; visibility: hidden; }
        .loading-om {
            font-size: 5rem;
            background: linear-gradient(135deg, #F97316, #FBBF24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: float 2s ease-in-out infinite;
        }
        
        /* Decorative Elements */
        .decorative-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #F97316, #FBBF24);
            border-radius: 2px;
        }
        
        .rangoli-border {
            border-image: linear-gradient(135deg, #F97316, #FBBF24, #8B5CF6, #F97316) 1;
        }
        
        /* FAQ Accordion */
        .faq-item {
            background: #fff;
            border: 1px solid #f3f4f6;
            border-radius: 1rem;
            overflow: hidden;
            transition: box-shadow 0.3s, border-color 0.3s;
        }
        .faq-item:hover { box-shadow: 0 8px 24px rgba(249, 115, 22, 0.08); }
        .faq-item.active {
            border-color: #fdba74;
            box-shadow: 0 12px 32px rgba(249, 115, 22, 0.12);
        }
        .faq-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            text-align: left;
            background: transparent;
            cursor: pointer;
            transition: background 0.2s;
        }
        .faq-item.active .faq-toggle { background: linear-gradient(135deg, #FFF8F0, #FFFBEB); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 0 1.5rem;
        }
        .faq-answer.open { padding-bottom: 1.25rem; }
        .faq-icon { transition: transform 0.3s; flex-shrink: 0; }
        .faq-icon.rotated { transform: rotate(180deg); }
        
        /* Sticky CTA */
        .sticky-cta {
            transform: translateY(100px);
            transition: transform 0.4s ease;
        }
        .sticky-cta.visible { transform: translateY(0); }
        
        /* Diya Animation */
        @keyframes flicker { 0%, 100% { opacity: 1; } 25% { opacity: 0.8; } 50% { opacity: 1; } 75% { opacity: 0.9; } }
        .diya-flame { animation: flicker 1s ease-in-out infinite; }
        
        /* Smooth Hover Links */
        .nav-link {
            position: relative;
            transition: color 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #F97316, #FBBF24);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }
        .nav-link:hover { color: #FBBF24; }
        
        /* Image Overlay */
        .img-overlay {
            position: relative;
            overflow: hidden;
        }
        .img-overlay img { transition: transform 0.6s ease; }
        .img-overlay:hover img { transform: scale(1.1); }
        
        /* Marquee */
        .marquee-container { overflow: hidden; }
        .marquee-content {
            display: flex;
            animation: marquee 30s linear infinite;
            width: max-content;
        }
        .marquee-content:hover { animation-play-state: paused; }
        
        /* Phone CTA bar */
        .phone-cta-bar {
            background: linear-gradient(135deg, #EA580C, #F97316, #FBBF24);
            background-size: 200% 200%;
            animation: gradientShift 4s ease infinite;
        }
        
        /* Unified Header Nav */
        .site-nav-dark {
            background: linear-gradient(180deg, rgba(26, 10, 46, 0.92) 0%, rgba(26, 10, 46, 0.6) 70%, transparent 100%);
        }
        .site-nav-dark.nav-scrolled {
            background: rgba(26, 10, 46, 0.95) !important;
            backdrop-filter: blur(20px) !important;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .site-nav-light {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .site-nav-light .nav-link::after { background: linear-gradient(90deg, #F97316, #FBBF24); }
        .inner-page-hero {
            margin-top: 0;
            padding-top: 148px;
        }
        @media (min-width: 1024px) {
            .inner-page-hero { padding-top: 168px; }
        }
        .home-main { padding-top: 0; }
        .inner-main { padding-top: 0; }
        /* Package cards — prevent Most Popular badge clipping */
        .packages-section { overflow: visible; }
        .package-card {
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: visible;
        }
        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(249, 115, 22, 0.15), 0 0 0 1px rgba(249, 115, 22, 0.2);
        }
        .package-card-header {
            min-height: 2.75rem;
        }
        .popular-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            background: linear-gradient(135deg, #F97316, #F59E0B);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            white-space: nowrap;
            padding: 0.4rem 0.75rem;
            border-radius: 9999px;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
            line-height: 1;
        }
        .popular-badge i {
            font-size: 0.55rem;
        }
        body { overflow-x: hidden; }

        @media (max-width: 768px) {
            .hero-title { font-size: 2rem !important; }
            .process-step::after { display: none; }
        }

