 /* ============================================
       SANATAN VANI TV - COMPLETE THEME CSS
       Navbar: FIXED TOP + 100px height
       Mobile: Hamburger menu opens BELOW navbar
       Desktop: Exact same layout
       Hero Image: NO OPACITY, NO EMOJIS
       Download App Icons: 100px
       Feature Elements: 100px
       Footer: INCREASED SIZE
       Footer Image: 250px
    ============================================ */

 :root {
   --saffron: #FF9933;
   --saffron-dark: #E67E22;
   --sandalwood: #F9E7C2;
   --deep-ochre: #C17B2E;
   --maroon: #8B1E2C;
   --golden: #D4AF37;
   --cream: #FFF8E7;
   --divine-gold: #C9A03D;
   --gita-green: #2E5A4C;
   --primary: #C17B2E;
   --primary-soft: #FCE4C5;
   --accent-purple: #8E44AD;
   --border-light: rgba(0, 0, 0, 0.1);
   --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.1);
   --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
   --bg-deep: #FFF4E6;
 }

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

 body {
   background: linear-gradient(135deg, #FFF9F0 0%, #FFF2E0 100%);
   font-family: 'Inter', sans-serif;
   overflow-x: hidden;
   padding-top: 100px;
 }

 /* Spinner */
 #spinner {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #FFF8ED;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 9999;
   transition: opacity 0.5s ease;
 }

 .premium-spinner {
   width: 60px;
   height: 60px;
   border: 4px solid #FFE0B5;
   border-top: 4px solid var(--saffron);
   border-radius: 50%;
   animation: spin 0.8s linear infinite;
 }

 @keyframes spin {
   to {
     transform: rotate(360deg);
   }
 }

 /* Navbar Styles - FIXED TOP + 100px height */
 .navbar-neo {
   background: rgba(255, 248, 235, 0.96);
   backdrop-filter: blur(12px);
   padding: 0;
   transition: all 0.3s ease;
   border-bottom: 1px solid rgba(193, 123, 46, 0.2);
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   min-height: 100px;
   width: 100%;
 }

 .navbar-neo.scrolled {
   background: rgba(255, 245, 230, 0.98);
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   min-height: 100px;
 }

 .navbar-neo .container-fluid {
   min-height: 100px;
   display: flex;
   align-items: center;
 }

 .navbar-brand img {
   height: 100px;
   width: auto;
   border-radius: 12px;
   transition: all 0.3s;
 }

 .nav-link-neo {
   font-weight: 600;
   color: #5A3A1A !important;
   margin: 0 0.8rem;
   transition: 0.3s;
   font-size: 1rem;
   letter-spacing: 0.3px;
   text-decoration: none;
   padding: 0.5rem 0;
 }

 .nav-link-neo:hover,
 .nav-link-neo.active {
   color: var(--saffron) !important;
 }

 .navbar-toggler-custom {
   background: transparent;
   border: none;
   font-size: 1.5rem;
   color: var(--saffron);
   cursor: pointer;
 }

 /* Mobile menu - opens BELOW navbar */
 @media (max-width: 991px) {
   .navbar-collapse {
     position: fixed;
     top: 100px;
     left: 0;
     right: 0;
     background: rgba(255, 248, 235, 0.98);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(193, 123, 46, 0.2);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     padding: 1rem 1.5rem;
     max-height: calc(100vh - 100px);
     overflow-y: auto;
     transform: translateY(-100%);
     transition: transform 0.3s ease;
     border-radius: 0 0 20px 20px;
     z-index: 999;
   }

   .navbar-collapse.show {
     transform: translateY(0);
   }

   .navbar-nav {
     flex-direction: column;
     width: 100%;
     margin: 0 !important;
   }

   .nav-link-neo {
     padding: 0.75rem 0;
     text-align: center;
     font-size: 1.1rem;
     border-bottom: 1px solid rgba(193, 123, 46, 0.1);
   }

   .navbar-neo .d-flex.gap-2 {
     flex-direction: column;
     width: 100%;
     margin-top: 1rem;
   }

   .navbar-neo .d-flex.gap-2 a {
     text-align: center;
     width: 100%;
   }
 }

 /* Button Styles */
 .btn-primary-neo {
   background: linear-gradient(135deg, #C17B2E, #E67E22);
   border: none;
   padding: 0.7rem 1.5rem;
   border-radius: 40px;
   font-weight: 600;
   color: white;
   text-decoration: none;
   transition: 0.3s;
   box-shadow: 0 4px 10px rgba(193, 123, 46, 0.3);
   font-size: 0.9rem;
   display: inline-block;
   text-align: center;
 }

 .btn-primary-neo:hover {
   transform: translateY(-2px);
   background: linear-gradient(135deg, #E67E22, #D35400);
   box-shadow: 0 8px 20px rgba(193, 123, 46, 0.4);
   color: white;
 }

 .btn-outline-neo {
   background: transparent;
   border: 2px solid #C17B2E;
   padding: 0.65rem 1.5rem;
   border-radius: 40px;
   font-weight: 600;
   color: #C17B2E;
   text-decoration: none;
   transition: 0.3s;
   font-size: 0.9rem;
   display: inline-block;
   text-align: center;
 }

 .btn-outline-neo:hover {
   background: #C17B2E10;
   border-color: #E67E22;
   color: #E67E22;
 }

 .btn-sm {
   padding: 0.4rem 1rem;
   font-size: 0.75rem;
 }

 /* Hero Section */
 .hero-neo {
   position: relative;
   min-height: 90vh;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   padding: 5rem 1rem;
   background: linear-gradient(135deg, #1a0e06 0%, #2c1a0e 50%, #1a0e06 100%);
   overflow: hidden;
 }

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

 .hero-content {
   position: relative;
   z-index: 2;
   max-width: 800px;
   margin: 0 auto;
   background: rgba(0, 0, 0, 0.65);
   backdrop-filter: blur(8px);
   padding: 3rem 2.5rem;
   border-radius: 40px;
   border: 1px solid rgba(255, 153, 51, 0.4);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
 }

 .hero-title {
   font-size: 4.2rem;
   font-weight: 800;
   background: linear-gradient(135deg, #FFD89B, #FF9933, #FF6B00);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
   font-family: 'Plus Jakarta Sans', sans-serif;
   margin-bottom: 1rem;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
   letter-spacing: 2px;
 }

 .hero-sub {
   font-size: 1.6rem;
   font-weight: 600;
   letter-spacing: 1px;
   background: linear-gradient(135deg, #FFE0B5, #FFCC80);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
 }

 .hero-desc {
   color: #F5E6D3;
   font-size: 1.15rem;
   max-width: 600px;
   margin: 0 auto;
   line-height: 1.6;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
   font-weight: 400;
 }

 /* Stats Section */
 .stats-neo {
   background: white;
   border-radius: 50px;
   padding: 1.5rem 2rem;
   margin-top: -2rem;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
   position: relative;
   z-index: 3;
 }

 .stat-number {
   font-size: 1.8rem;
   font-weight: 800;
   color: var(--saffron);
 }

 /* Glass Card */
 .glass-card-neo {
   background: rgba(255, 245, 230, 0.9);
   backdrop-filter: blur(8px);
   border-radius: 40px;
   padding: 2rem;
   border: 1px solid rgba(193, 123, 46, 0.2);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
 }

 /* App Cards */
 .app-card-neo {
   background: white;
   border-radius: 28px;
   padding: 1.5rem 0.8rem;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
   border: 1px solid #FFE0B5;
 }

 .app-card-neo:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 30px rgba(193, 123, 46, 0.1);
   border-color: var(--saffron);
 }

 .app-icon {
   width: 150px;
   height: 150px;
   object-fit: contain;
   margin-bottom: 1rem;
 }

 .btn-app-neo {
   background: #FFF2E5;
   padding: 0.3rem 0.8rem;
   border-radius: 30px;
   font-size: 0.75rem;
   color: #C17B2E;
   text-decoration: none;
   margin: 0.2rem;
   display: inline-block;
   transition: 0.2s;
 }

 .btn-app-neo:hover {
   background: #FFE0B5;
   color: #B55B1A;
 }

 /* Pricing Cards */
 .pricing-card-neo {
   background: white;
   border-radius: 32px;
   padding: 1.8rem;
   text-align: center;
   transition: 0.3s ease;
   border: 1px solid #FFE0B5;
   height: 100%;
 }

 .pricing-card-neo:hover {
   transform: scale(1.02);
   border-color: var(--golden);
   box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
 }

 .price-amount {
   font-size: 2.5rem;
   font-weight: 800;
   color: var(--saffron);
 }

 .price-period {
   font-size: 0.9rem;
 }

 .price-features {
   list-style: none;
   padding: 0;
   text-align: left;
   margin-top: 1.5rem;
 }

 .price-features li {
   margin: 0.8rem 0;
   display: flex;
   align-items: center;
   gap: 0.6rem;
 }

 .price-features li i {
   color: var(--saffron);
   width: 20px;
 }

 /* FAQ Section */
 .faq-list {
   max-width: 800px;
   margin: 0 auto;
 }

 .faq-item-neo {
   background: white;
   border-radius: 20px;
   margin-bottom: 1rem;
   border: 1px solid #F0E1CF;
   overflow: hidden;
 }

 .faq-question-neo {
   padding: 1.2rem 1.5rem;
   font-weight: 700;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #FFFBF5;
   transition: 0.2s;
 }

 .faq-question-neo:hover {
   background: #FFF5E8;
 }

 .faq-answer-neo {
   padding: 0 1.5rem;
   max-height: 0;
   overflow: hidden;
   transition: 0.3s ease;
 }

 .faq-item-neo.active .faq-answer-neo {
   padding: 0 1.5rem 1.2rem 1.5rem;
   max-height: 300px;
 }

 .faq-item-neo.active .fa-chevron-down {
   transform: rotate(180deg);
 }

 /* Features Grid */
 .features-grid {
   gap: 2rem;
 }

 .feature-item {
   background: #FFF5E8;
   border-radius: 28px;
   padding: 1rem;
   transition: 0.3s ease;
   cursor: pointer;
 }

 .feature-item img {
   width: 100px;
   height: 100px;
   object-fit: contain;
   transition: transform 0.3s ease;
 }

 .feature-item:hover img {
   transform: scale(1.05);
 }

 /* Section Headers */
 .section-header h2 {
   font-size: 2rem;
   font-weight: 700;
   color: #754E28;
   text-align: center;
   font-family: 'Plus Jakarta Sans', sans-serif;
 }

 .section-underline {
   width: 80px;
   height: 3px;
   background: #FF9933;
   margin: 0.8rem auto 2rem auto;
   border-radius: 3px;
 }

 /* Footer */
 .footer-neo {
   background: #2A1E12;
   color: #DDCBB8;
   padding: 4rem 0 2rem;
   margin-top: 2rem;
   font-size: 1rem;
 }

 .footer-heading {
   color: #FFC085;
   margin-bottom: 1.5rem;
   font-size: 1.3rem;
   font-weight: 700;
 }

 .footer-links {
   list-style: none;
   padding: 0;
 }

 .footer-links li a,
 .footer-links li {
   color: #DDCBB8;
   text-decoration: none;
   font-size: 0.95rem;
   line-height: 2.2;
   transition: 0.2s;
 }

 .footer-links li a:hover {
   color: #FF9933;
   padding-left: 5px;
 }

 .footer-img-large {
   max-width: 250px;
   width: 100%;
   border-radius: 16px;
 }

 /* WhatsApp Float Button */
 .whatsapp-float {
   position: fixed;
   bottom: 20px;
   left: 20px;
   background: #25D366;
   color: white;
   padding: 12px 18px;
   border-radius: 40px;
   font-weight: bold;
   text-decoration: none;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
   z-index: 1001;
   font-size: 0.9rem;
   transition: 0.2s;
   display: flex;
   align-items: center;
   gap: 8px;
 }

 .whatsapp-float:hover {
   transform: scale(1.05);
   background: #20B859;
   color: white;
 }

 /* Back to Top Button */
 .back-to-top {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: #C17B2E;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   opacity: 0;
   transition: 0.3s;
   text-decoration: none;
   z-index: 1001;
 }

 .back-to-top.visible {
   opacity: 1;
 }

 .back-to-top:hover {
   background: #E67E22;
   color: white;
 }

 /* Utility Classes */
 .py-5 {
   padding-top: 3rem;
   padding-bottom: 3rem;
 }

 .mt-3 {
   margin-top: 1rem;
 }

 .mt-4 {
   margin-top: 1.5rem;
 }

 .mt-5 {
   margin-top: 2rem;
 }

 .mb-5 {
   margin-bottom: 2rem;
 }

 .my-4 {
   margin-top: 1.5rem;
   margin-bottom: 1.5rem;
 }

 .text-center {
   text-align: center;
 }

 .text-muted {
   color: #6c757d;
 }

 .small {
   font-size: 0.875rem;
 }

 .fw-bold {
   font-weight: 700;
 }

 .fs-5 {
   font-size: 1.25rem;
 }

 .fa-2x {
   font-size: 2rem;
 }

 .gap-2 {
   gap: 0.5rem;
 }

 .gap-3 {
   gap: 1rem;
 }

 .gap-4 {
   gap: 1.5rem;
 }

 .gap-5 {
   gap: 2rem;
 }

 .flex-wrap {
   flex-wrap: wrap;
 }

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

 .align-items-center {
   align-items: center;
 }

 .rounded-4 {
   border-radius: 1rem;
 }

 .img-fluid {
   max-width: 100%;
   height: auto;
 }

 .w-100 {
   width: 100%;
 }

 .ms-2 {
   margin-left: 0.5rem;
 }

 .ms-3 {
   margin-left: 1rem;
 }

 .me-2 {
   margin-right: 0.5rem;
 }

 .px-4 {
   padding-left: 1.5rem;
   padding-right: 1.5rem;
 }

 .border-top {
   border-top: 1px solid rgba(255, 255, 255, 0.15);
 }

 .pt-3 {
   padding-top: 1rem;
 }

 .feature-row-img {
   max-width: 100%;
   border-radius: 24px;
 }

 /* Desktop - exact same */
 @media (min-width: 992px) {
   .navbar-collapse {
     display: flex !important;
     flex-basis: auto;
   }

   .navbar-nav {
     flex-direction: row;
   }

   .navbar-neo .d-flex.gap-2 {
     flex-direction: row;
     width: auto;
     margin-top: 0;
   }
 }

 /* Responsive adjustments for mobile */
 @media (max-width: 991px) {
   body {
     padding-top: 70px;
   }

   .navbar-neo .container-fluid {
     min-height: auto;
     padding: 0.5rem 1rem !important;
   }

   .navbar-neo {
     min-height: 70px;
   }

   .navbar-brand img {
     height: 50px;
   }

   .hero-title {
     font-size: 2.5rem;
   }

   .hero-sub {
     font-size: 1.2rem;
   }

   .hero-content {
     padding: 1.5rem;
   }

   .app-icon {
     width: 70px;
     height: 70px;
   }

   .feature-item img {
     width: 70px;
     height: 70px;
   }

   .footer-img-large {
     max-width: 180px;
   }
 }

 @media (max-width: 768px) {
   .hero-title {
     font-size: 2rem;
   }

   .hero-sub {
     font-size: 1rem;
   }

   .hero-desc {
     font-size: 0.9rem;
   }

   .stat-number {
     font-size: 1.2rem;
   }

   .stats-neo {
     padding: 1rem;
     border-radius: 30px;
   }

   .section-header h2 {
     font-size: 1.5rem;
   }

   .hero-content {
     padding: 1rem;
   }

   .app-icon {
     width: 60px;
     height: 60px;
   }

   .feature-item img {
     width: 60px;
     height: 60px;
   }

   .footer-img-large {
     max-width: 150px;
   }

   .footer-heading {
     font-size: 1.1rem;
   }
 }

 @media (max-width: 576px) {
   .stats-neo div {
     font-size: 0.8rem;
   }

   .stat-number {
     font-size: 1rem;
   }

   body {
     padding-top: 65px;
   }

   .hero-title {
     font-size: 1.8rem;
   }

   .app-icon {
     width: 50px;
     height: 50px;
   }

   .feature-item img {
     width: 50px;
     height: 50px;
   }
 }


 html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}