
        :root {
            --midnight: #0A2540;
            --cool-gray: #F5F7FA;
            --white: #ffffff;
            --accent: #635bff; /* Subtle Stripe-like accent for modern finance feel */
        }

        body { font-family: 'Inter', sans-serif; color: var(--midnight); overflow-x: hidden; }
        h1, h2, h3, h4, .navbar-brand { font-family: 'Lexend', sans-serif; font-weight: 700; }

        /* Navbar */
        .navbar { padding: 1.5rem 0; background: transparent !important; }
        .nav-link { color: var(--midnight) !important; font-weight: 600; margin: 0 10px; transition: 0.3s; }
        .nav-link:hover { color: var(--accent) !important; }
        .btn-navy { background-color: var(--midnight); color: var(--white) !important; padding: 10px 25px; border-radius: 6px; font-weight: 600; }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(231, 232, 233, 0.7) 100%), url('https://img.freepik.com/free-photo/dynamic-data-visualization-3d_23-2151904310.jpg?semt=ais_hybrid&w=740&q=80') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        /* Generic Section Padding */
        section { padding: 90px 0; }
        .bg-cool { background-color: var(--cool-gray); }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { color: var(--midnight); position: relative; padding-bottom: 20px; font-size: 2.5rem; }
        .section-title h2::after { content: ''; position: absolute; width: 60px; height: 4px; background: var(--accent); bottom: 0; left: 50%; transform: translateX(-50%); }

        /* About Us - 15 Linepara */
        .about-text { text-align: justify; line-height: 1.8; font-size: 1.05rem; }

        /* Counter */
        .counter-section { background-color: var(--cool-gray); padding: 60px 0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
        .counter-box h2 { font-size: 3rem; color: var(--midnight); margin-bottom: 0; }
        .counter-box p { font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }

        /* Services Cards - 7 line constraint */
        .service-card { border: none; transition: 0.4s; height: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .service-img { height: 230px; object-fit: cover; }
        .service-desc { 
            height:200px; /* Ensures approx 7 lines of text */
            overflow: hidden; 
            padding: 20px;
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 15px;
            border-radius: 8px;
        }

        /* FAQ */
        .accordion-button:not(.collapsed) { background-color: var(--midnight); color: var(--white); }

        /* Contact Wrapper */
        .contact-info-list i { background: var(--midnight); color: white; width: 40px; height: 40px; border-radius: 50%; line-height: 40px; text-align: center; margin-right: 15px; }

        /* Footer */
        footer { background: var(--midnight); color: #cbd5e0; padding: 80px 0 30px; }
        footer a { color: #cbd5e0; text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--white); }
        .footer-logo { font-size: 1.5rem; color: white; display: block; margin-bottom: 25px; }
