

  
        /* Sticky Header Styles */
        .sticky-header {
            transition: all 0.3s ease;
        }

        .sticky-header.scrolled {
            background-color: rgba(11, 17, 32, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        /* Menu Animation */
        #mobile-menu.menu-open {
            transform: translateX(0);
        }

        #mobile-menu-overlay.menu-open {
            opacity: 1;
            visibility: visible;
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }


        /* Pricing Card Hover Effect - Applied to ALL Cards */
        .pricing-card {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

 


        .pricing-card>* {
            position: relative;
            z-index: 1;
        }


      
      
        
        .pricing-card .feature-text {
            transition: color 0.3s ease;
        }
   