
        :root {
            --primary: #BDB2FF;
            --lightblue: #A0C4FF;
            --cyan: #9BF6FF;
            --pink: #FFC6FF;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: #2d3748;
            background: #fdfdff;
        }
        .navbar {
            background: transparent;
            transition: all 0.4s ease;
        }
        .hero {
            background: linear-gradient(135deg, rgba(189, 178, 255, 0.85), rgba(16, 16, 17, 0.85)),
                        url('https://png.pngtree.com/thumb_back/fh260/background/20230722/pngtree-financial-transaction-tools-on-blue-background-3d-render-for-accountancy-image_3780303.jpg') center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;   
        }

        .nav-item{
            margin-left:25px !important;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--primary), var(--lightblue));
            border: none;
            color: #2d3748;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(189, 178, 255, 0.4);
        }
        .btn-outline {
            border: 2px solid white;
            color: white;
        }
        .section-title {
            color: #2d3748;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 75px;
            height: 5px;
            background: linear-gradient(to right, var(--cyan), var(--pink));
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 50px;
        }
        .service-card {
            transition: all 0.4s ease;
            border: none;
            border-radius: 20px;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(189, 178, 255, 0.25);
        }
        .counter {
            font-size: 3.2rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        footer {
            background: #2d3748;
        }
