   /* Enhanced Typography */
    * {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    canvas {
  /* Size and positioning */
  width: 800px;
  height: 600px;
  

  
  
  /* Display properties */
  display: block;
  margin: 0 auto; /* Center the canvas */
}
    /* Professional Grunge Background */
    body {
      background: #0a0a0a url('https://www.navaura.in/asfalt-light.png') repeat;
      cursor: none;
      font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    }
    
    /* Enhanced Grid overlay */
    .grid-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }
    /* CHART HEIGHT FIX - Add this to your existing CSS */

/* Fix excessive chart height on desktop */
.chart-container {
  height: auto !important;
  min-height: 300px !important;
  max-height: 380px !important;

}

/* Add chart wrapper for controlled height */
.chart-wrapper {
  position: relative !important;
  height: 280px !important;
  width: 100% !important;
}

/* Desktop specific fixes */
@media (min-width: 769px) {
  .chart-container {
    min-height: 320px !important;
    max-height: 380px !important;
  }
  
  .chart-wrapper {
    height: 280px !important;
  }
}

/* Mobile chart fixes */
@media (max-width: 768px) {
  .chart-container {
    height: auto !important;
    min-height: 200px !important;
    max-height: 300px !important;
    padding: 1rem !important;
  }

  .chart-wrapper {
    height: 180px !important;
  }

  .chart-title {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }
}
    /* Professional RGB Gradient */
.gradient-glow {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70vh;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 120%, 
    rgba(6, 182, 212, 0.15), 
    rgba(168, 85, 247, 0.1), 
    rgba(236, 72, 153, 0.08),
    transparent 70%);
  background-size: 600% 600%;
  animation: professionalPulse 15s ease infinite;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
  transition: position 0.3s ease;
  z-index: 5;
}
    
    @keyframes professionalPulse {
      0%, 100% { background-position: 50% 100%; opacity: 0.8; }
      33% { background-position: 20% 80%; opacity: 0.6; }
      66% { background-position: 80% 60%; opacity: 0.9; }
    }
    
    /* Refined Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
  background: rgb(255, 255, 255); /* subtle fallback color */

  mix-blend-mode: difference;
  z-index: 2147483647;

  transition: transform 0.1s ease;
}

/* Firefox fallback */
@-moz-document url-prefix() {
  .custom-cursor {
    background: rgb(255, 255, 255);

    mix-blend-mode: difference; 
  }
}
    
    /* Enhanced Glassmorphism */
    .glass {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .glass-strong {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(25px) saturate(200%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }
    
    /* Professional Hover Effects */
    .hover-lift {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .hover-lift:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
    }
    
    /* Refined Neon Glow */
    .neon-glow {
      box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.3),
        0 0 40px rgba(6, 182, 212, 0.2),
        0 0 80px rgba(6, 182, 212, 0.1);
      animation: professionalNeon 3s ease-in-out infinite alternate;
    }
    
    @keyframes professionalNeon {
      from { 
        box-shadow: 
          0 0 20px rgba(6, 182, 212, 0.3),
          0 0 40px rgba(6, 182, 212, 0.2),
          0 0 80px rgba(6, 182, 212, 0.1);
      }
      to { 
        box-shadow: 
          0 0 30px rgba(6, 182, 212, 0.5),
          0 0 60px rgba(6, 182, 212, 0.3),
          0 0 100px rgba(6, 182, 212, 0.15);
      }
    }
    
    /* Professional Animations */
    .slide-up {
      opacity: 0;
      transform: translateY(60px);
      animation: professionalSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    
    @keyframes professionalSlideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Enhanced Navigation */
    .nav-blur {
      backdrop-filter: blur(20px) saturate(180%);
      background: rgba(10, 10, 10, 0.8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    /* Professional Button Styles */
    .btn-primary {
      background: linear-gradient(135deg, #06b6d4, #0891b2);
      box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      background: linear-gradient(135deg, #0891b2, #0e7490);
      box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
      transform: translateY(-2px);
    }
    
    /* Refined Typography */
    .hero-title {
      background: linear-gradient(135deg, #ffffff, #e2e8f0, #cbd5e1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      letter-spacing: -0.025em;
    }
    
    /* Professional Spacing */
    .section-padding {
      padding: 5rem 0;
    }
    
    @media (min-width: 768px) {
      .section-padding {
        padding: 7rem 0;
      }
    }
    
    /* Form Styles */
    .form-input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }
    
    .form-input:focus {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(6, 182, 212, 0.5);
      box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
      outline: none;
    }
    
    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .bottom-bar {
      position: sticky;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40px;
      background-color: #ffffff;
      z-index: 99;
    }
    /* Firefox fallback */
@-moz-document url-prefix() {
  .custom-cursor {
    background: rgb(255, 255, 255);
    mix-blend-mode: difference; 
  }
}

/* ENHANCED MOBILE CURSOR DISABLE - Multiple Detection Methods */
/* Method 1: Touch Device Detection */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
  
  body {
    cursor: auto !important;
  }
}

/* Method 2: Screen Size Detection */
@media (max-width: 768px) {
  .custom-cursor {
    display: none !important;
  }
  
  body {
    cursor: auto !important;
  }
}

/* Method 3: Combined Touch and Small Screen */
@media (max-width: 1024px) and (hover: none) {
  .custom-cursor {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  body {
    cursor: auto !important;
  }
}

/* Method 4: Orientation Detection for Mobile */
@media (orientation: portrait) and (max-width: 768px) {
  .custom-cursor {
    display: none !important;
  }
  
  body {
    cursor: auto !important;
  }
}

/* Method 5: Additional Touch Device Detection */
@media (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
  
  body {
    cursor: auto !important;
  }
}
        .hamburger {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hamburger:hover {
            opacity: 0.7;
        }
        
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            margin: 5px 0;
            transition: 0.3s;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .mobile-menu {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-menu.active {
            max-height: 400px;
        }
        
        .nav-link {
            transition: color 0.2s ease;
        }
        
        .nav-link:hover {
            color: #00bcd4;
        }

/* Mobile Button Fixes */
@media (max-width: 768px) {
  .btn-primary:hover {
    transform: none;
  }
}

/* Refined Typography */
.hero-title {
  background: linear-gradient(135deg, #ffffff, #e2e8f0, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* Mobile Typography Fixes */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.1;
    margin-bottom: 1rem !important;
  }

  .text-6xl,
  .sm\\:text-7xl,
  .lg\\:text-8xl,
  .xl\\:text-9xl {
    font-size: 2.5rem !important;
  }

  .text-xl.sm\\:text-2xl.lg\\:text-3xl {
    font-size: 1.1rem !important;
    line-height: 1.4;
    margin-bottom: 2rem !important;
  }

  .text-5xl.sm\\:text-6xl {
    font-size: 1.8rem !important;
  }

  .text-4xl.sm\\:text-5xl {
    font-size: 1.5rem !important;
  }
}

/* Professional Spacing */
.section-padding {
  padding: 5rem 0;
}

@media (min-width: 800px) {
  .section-padding {
    padding: 7rem 0;
  }
  .carousel h2{
    font-size: 0.8rem!important;
  }
}

/* Mobile Spacing Fixes */
@media (max-width: 768px) {
  .section-padding {
    padding: 2rem 0 !important;
  }

  .px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .py-4 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .mb-8 {
    margin-bottom: 1rem !important;
  }

  .mb-12 {
    margin-bottom: 2rem !important;
  }

  .mb-16 {
    margin-bottom: 2rem !important;
  }

  .mb-20 {
    margin-bottom: 2rem !important;
  }

  .pt-20 {
    padding-top: 5rem !important;
  }
}

/* Loading Animation */
.loading-dot {
  animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Professional Card Styles */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.8), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Mobile Feature Cards */
@media (max-width: 768px) {
  .grid.lg\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .feature-card {
    padding: 1.5rem !important;
  }

  .feature-card .w-20.h-20 {
    width: 3rem !important;
    height: 3rem !important;
    margin-bottom: 1rem !important;
  }

  .feature-card .text-3xl {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }

  .feature-card .text-lg {
    font-size: 0.9rem !important;
  }
}

/* Carousel Styles */
.carousel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  padding: 20px;
  margin: 0 auto;
  position: relative;
}

.carousel h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.slides {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slide {
  min-width: 150px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white!important;
  font-size: 1.1rem;
  font-weight: bold;
}

.slide img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* Mobile Carousel Fixes */
@media (max-width: 768px) {
  .carousel {
    padding: 1rem !important;
    margin: 1rem 0 !important;
  }

  .carousel h2 {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .slide {
    min-width: 80px !important;
    margin-right: 15px !important;
    font-size: 0.7rem !important;
  }

  .slide img {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 5px !important;
  }
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #ffffff;
  z-index: 6;
}

-item {
  margin-bottom: 4rem;
  pointer-events: none;
}

-item:hover {
  transform: scale(0)!important;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

/* Mobile Stats Grid */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .stat-card {
    padding: 1rem !important;
  }

  .stat-number {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem !important;
  }

  .stat-label {
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem !important;
  }

  .grid.grid-cols-2.lg\\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .text-5xl.lg\\:text-6xl {
    font-size: 1.8rem !important;
  }

  .text-gray-300.text-lg {
    font-size: 0.8rem !important;
  }
}

.comparison-container {
  display: grid;
height: 880px;
  gap: 3rem;
  margin-top: 3rem;
}

.chart-container {
  position: relative;
  height:396px;
  padding: 2rem;
  width: 100%;
}

.chart-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.feature-comparison {
  padding: 2rem;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-item:last-child {
  border-bottom: none;
}

.feature-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.vs-badge {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navaura-badge {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.others-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.pulse {
  animation: pulse 2s infinite;
}
.hamburger{
  display: none!important ;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .comparison-container {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-top: 1rem !important;
    max-width: 100% !important;
  }
  
  .chart-container {
    height: 200px !important;
    padding: 1rem !important;
  }

  .chart-title {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .feature-comparison {
    padding: 1rem !important;
  }

  .comparison-item {
    flex-direction: inherit !important ;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 0 !important;
  }

  .feature-name {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem;
  }

  .vs-badge {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .navaura-badge,
  .others-badge {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.7rem !important;
    white-space: nowrap;
  }

  .highlight-box {
    padding: 1rem !important;
    margin-top: 1rem !important;
  }

  /* Hero Section Mobile Fixes */
  .min-h-screen {
    min-height: 70vh !important;
  }

  .flex.flex-col.sm\\:flex-row {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .btn-primary,
  .glass {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
  }

  /* Glass Container Mobile Fixes */
  .glass,
  .glass-strong {
    padding: 1.5rem !important;
    margin: 1rem 0 !important;
  }

  .p-10 {
    padding: 1.5rem !important;
  }

  .p-12,
  .lg\\:p-16 {
    padding: 1.5rem !important;
  }

  .p-16 {
    padding: 1.5rem !important;
  }

  /* Footer Mobile Fixes */
  .grid.lg\\:grid-cols-5 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .lg\\:col-span-2 {
    grid-column: span 1 !important;
  }

  .text-4xl {
    font-size: 1.5rem !important;
  }

  .flex.flex-col.md\\:flex-row {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center;
  }

  .text-sm {
    font-size: 0.75rem !important;
  }

  /* Additional Mobile Container Fixes */
  .max-w-7xl,
  .max-w-6xl,
  .max-w-5xl {
    max-width: 100% !important;
    padding: 0 1rem !important;
  }
.hamburger{
  display: block !important;
}
  .rounded-3xl {
    border-radius: 1rem !important;
  }

  .rounded-2xl {
    border-radius: 0.75rem !important;
  }

  /* Ensure no horizontal overflow */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden !important;
  }

  /* Mobile Text Adjustments */
  .text-2xl {
    font-size: 1.2rem !important;
  }

  .leading-relaxed {
    line-height: 1.4 !important;
  }

  /* Mobile Gradient Background Fix */
  .gradient-glow {
    height: 40vh !important;
  }
}        
   #back-to-top {
      visibility: hidden;
    }
    
    #back-to-top.active {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
      cursor: pointer;
    }
    
    /* Ripple effect styles */
    .ripple-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 50%;
pointer-events: all;
    }
    
    .ripple {
      position: absolute;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      transform: scale(0);
      animation: ripple-animation 0.6s linear;
    }
    
    @keyframes ripple-animation {
      to {
        transform: scale(2.5);
        opacity: 0;
      }
    }
