
        :root {
            --primary: #2962FF; /* Trustworthy blue */
            --primary-dark: #0039CB;
            --secondary: #455A64; /* Professional slate */
            --accent: #00BFA5; /* Financial teal */
            --accent-dark: #00897B;
            --dark-background: #263238; /* Deep professional background */
            --light-background: #f5f7fa;
            --text-dark: #37474F;
            --text-light: #ECEFF1;
            --success: #4CAF50;
            --warning: #FFC107;
            --error: #F44336;
            --border-color: #CFD8DC;
            --shadow-light: rgba(0, 0, 0, 0.08);
            --shadow-medium: rgba(0, 0, 0, 0.15);
            --shadow-strong: rgba(0, 0, 0, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            margin: 0;
            padding: 0;
            color: var(--text-dark);
            background-color: var(--light-background);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            line-height: 1.6;
        }

        /* Professional Navbar */
        .navbar {
            background-color: var(--primary);
        color: white;
        padding: 1rem 2rem;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
        }

        .logo i {
            margin-right: 12px;
            font-size: 2rem;
            color: var(--accent);
        }

        .logo span {
            font-weight: 700;
            color: white;
        }

        .logo .pro {
            font-size: 1rem;
            background: var(--accent);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            margin-left: 8px;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .sign-in-btn {
            background-color: var(--accent);
            color: white;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .sign-in-btn:hover {
            background-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 191, 165, 0.3);
        }

        /* Hero Section with Financial Imagery */
.hero-background {
    background:
        linear-gradient(135deg, rgba(17, 23, 27, 0.51) 0%, rgba(15, 31, 78, 0.85) 100%),
        url('img/home.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 70px;
}

        .hero {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 10%;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-item {
            display: flex;
            align-items: center;
        }

        .stat-item i {
            font-size: 2rem;
            color: var(--accent);
            margin-right: 15px;
        }

        .stat-text h3 {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            box-shadow: 0 4px 12px var(--shadow-light);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn i {
            margin-right: 8px;
        }

        .btn-primary {
            background-color: var(--accent);
            color: white;
        }
        .btn-primary:hover {
            background-color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 191, 165, 0.3);
        }

        .btn-secondary {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
        }

        .trusted-by {
            display: flex;
            align-items: center;
            margin-top: 2rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .trusted-logos {
            display: flex;
            align-items: center;
            margin-left: 15px;
            gap: 20px;
        }

        .trusted-logos img {
            height: 30px;
            opacity: 0.8;
            filter: brightness(0) invert(1);
            transition: opacity 0.3s ease;
        }

        .trusted-logos img:hover {
            opacity: 1;
        }

        /* Features Section - Financial Focus */
        .features-section {
            padding: 100px 5%;
            background-color: white;
            color: var(--text-dark);
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark-background);
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--secondary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-item {
            background-color: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px var(--shadow-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow-medium);
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-background);
            font-weight: 600;
        }

        .feature-item p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .feature-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .feature-link i {
            margin-left: 5px;
            font-size: 1rem;
            color: var(--primary);
            background: none;
            -webkit-background-clip: initial;
            -webkit-text-fill-color: initial;
        }

        .feature-link:hover {
            color: var(--primary-dark);
        }


        /* Testimonials Section - Professional Style */
        .testimonials-section {
            background-color: white;
            padding: 100px 5%;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 50px auto 0;
        }

        .testimonial-item {
            background-color: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px var(--shadow-light);
            text-align: left;
            position: relative;
            border: 1px solid var(--border-color);
        }

        .testimonial-item:before {
            content: '"';
            font-size: 5rem;
            color: var(--accent);
            opacity: 0.1;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-item p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: var(--text-dark);
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light-background);
            margin-right: 15px;
            overflow: hidden;
        }

        .author-info h4 {
            font-size: 1rem;
            color: var(--dark-background);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--secondary);
            margin: 0;
            font-style: normal;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark-background) 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background-color: var(--dark-background);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo i {
            font-size: 2rem;
            color: var(--accent);
            margin-right: 10px;
        }

        .footer-logo span {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .footer-about p {
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.8rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 5%;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                color: white;
                font-size: 1.5rem;
                cursor: pointer;
            }
            
            .hero-background {
                height: auto;
                padding: 100px 0;
            }
            
            .hero {
                padding: 0 5%;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
            }
            
            .trusted-by {
                flex-direction: column;
                align-items: center;
            }
            
            .trusted-logos {
                margin-top: 15px;
                margin-left: 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .feature-item, .testimonial-item, .pricing-card {
                padding: 30px 20px;
            }
            
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
   