
        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #14b8a6;
            --other: #9c0d03;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        body {
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        .nav {
            background: rgba(255, 255, 255, 0.95);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            padding: 0.5rem 2rem;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 700;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 2.0rem;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: rgba(99, 102, 241, 0.1);
        }

        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 34px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem;
            min-height: 40vh;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/api/placeholder/1920/1080') center/cover;
            opacity: 0.1;
            z-index: 0;
            animation: pulse 6s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.05; }
            50% { opacity: 0.15; }
            100% { opacity: 0.05; }
        }
        
        .hero-content {
            flex: 1;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
            padding-left: 5%;
        }
        
        .hero-svg {
            
            right: -3%;
            transform: translateY(-50%);
            position: relative;
            opacity: 0.55;
            z-index: 1;
            pointer-events: none;
            flex: 1;
            height: 80px;
            width: 400px;
            margin-bottom: 30%; /* Compensate for translateY */
        }
        
        .fade-in {
            opacity: 0;
            animation: fadeIn 0.8s ease-in forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .button-group {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: flex-start; /* Align buttons to the left */
        }
        
        
        
        /* Make it responsive */
        @media (max-width: 768px) {
            .hero-svg {
                width: 90%;
                right: -10%;
                opacity: 0.1;
            }
        
            .hero {
                padding: 6rem 1rem 4rem;
            }
        
            .hero-content {
                padding-left: 0;
                text-align: center;
            }
        
            .button-group {
                justify-content: center;
            }
        }

        

        .features {
            position: relative;
            min-height: 100vh;
            background: var(--light);
        }
        
        .features-nav {
            position: sticky;
            top: 2rem;
            z-index: 10;
            background: var(--light);
            padding: 2rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .features-nav-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .feature-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s ease;
        }
        
        .feature-nav-item.active {
            opacity: 1;
        }
        
        .feature-nav-item .feature-icon {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .feature-nav-item span {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .features-content {
            position: relative;
        }
        
        .feature-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            opacity: 0.3;
            transition: opacity 0.5s ease;
        }
        
        .feature-section.active {
            opacity: 1;
        }
        
        .feature-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .feature-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .feature-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            color: var(--dark);
            margin-bottom: 2rem;
        }
        
        .feature-image {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Background transitions */
        #reports { background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%); }
        #invoicing { background: linear-gradient(135deg, #f0f7ff 0%, #e6f0f9 100%); }
        #mobile { background: linear-gradient(135deg, #f5f0ff 0%, #eee6f9 100%); }
        #reconciliation { background: linear-gradient(135deg, #f0fff4 0%, #e6f9ee 100%); }
        
        @media (max-width: 768px) {
            .features-nav-container {
                gap: 1rem;
                flex-wrap: wrap;
            }
        
            .feature-nav-item {
                font-size: 0.8rem;
            }
        
            .feature-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
        
            .feature-content h2 {
                font-size: 2rem;
            }
        
            .feature-content p {
                font-size: 1rem;
            }
        }

        .analytics {
            padding: 4rem 2rem;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        .analytics::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
            animation: gradient-rotate 10s linear infinite;
        }

        @keyframes gradient-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .analytics-content {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: center;
        }

        .chart-container {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .chart-container:hover {
            transform: scale(1.02);
        }

        .section-heading {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .contact-section {
            padding: 4rem 2rem;
            background: linear-gradient(120deg, var(--dark), var(--primary-dark));
            /* background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); */
        }

        .contact-section .section-heading {
            color: var(--light);
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--light);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            display: grid;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 500;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea {
            padding: 0.75rem;
            border: 2px solid #e2e8f0;
            border-radius: 0.5rem;
            transition: border-color 0.3s ease;
            width: 100%;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .submit-btn {
            background: linear-gradient(56deg, var(--primary), var(--secondary)) !important;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 2.0rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 30%;
            margin-left: 16rem;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
            color: white;
            padding: 1rem 2rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(100%);
            z-index: 100;
        }

        .floating-cta.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .floating-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .analytics-content {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .section-heading {
                font-size: 2rem;
            }
            .form-group input,
            .form-group textarea {
                width: 77% !important;
            }
            .form-group input:focus,
            
            .submit-btn {
                
                
            }
        }

        /* Keep existing styles for plans, etc... */
        /* Testimonials */
        .testimonials {
            padding: 4rem 2rem;
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 2.0rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-weight: 600;
            color: #0f172a;
        }

        .button-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .cta_btn:hover, .signin_btn:hover {
            transform: translateY(-5px);
            background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
        }

        .signin_btn, .cta_btn{
            padding: 0.875rem 2rem;
            font-weight: 600;
            text-decoration: none;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white !important;
            border: none;
            border-radius: 2.0rem;
            cursor: pointer;
            transition: background 0.3s ease;
            
        }
        
        .content {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #0f172a;
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 1rem;
        }

        .plan {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 2.0rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            transform: translateY(20px);
        }

        .plan:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
        }

        .plan h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #0f172a;
        }

        .feature {
            padding: 0.75rem 0;
            text-align: center;
            
        }

        .price {
            font-size: 1.5rem;
            font-weight: 500;
            margin: 1.5rem 0;
            color: #0f172a;
            text-align: center;
        }

        .duration {
            font-size: 1rem;
            font-weight: normal;
        }

        .subscribe-btn {
            background: #092461;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 2.0rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: auto;
            margin-left: 4rem;
            /* margin-left: 3.2rem; for mobile devices*/
        }

        .subscribe-btn:hover {
            background: var(--primary);
        }

        .subscription-length {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.875rem;
        }


        .footer {
            background: linear-gradient(125deg, var(--dark), var(--primary-dark));
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            gap: 20px;
        }
        
        .footer-section {
            flex: 1 1 300px;
            padding: 10px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin: 8px 0;
        }
        
        .footer-section ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: var(--light);
        }
        
        .footer-bottom {
            
            color: var(--light);
            padding: 10px 0;
            font-size: 14px;
        }
        
        .footer-bottom p {
            margin: 0;
        }
        
        .social-links {
            margin-top: 10px;
        }
        
        .social-link {
            display: inline-block;
            margin-right: 10px;
            color: #aaa;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .social-link i {
            margin-right: 8px;
        }
        
        .social-link:hover {
            color: #fff;
        }

#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    font-size: 24px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

#backToTopBtn:hover {
    background-color: #0056b3;
}
        