
        :root {
            --olive: #606C38;
            --sand: #DDA15E;
            --off-white: #FEFAE0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }

        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--olive) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            color: var(--sand);
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--olive) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--sand) !important;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--olive), var(--sand));
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(96, 108, 56, 0.3);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(240, 241, 238, 0.9), rgba(34, 33, 32, 0.9)),
                        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;
            min-height: 600px;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--olive);
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--sand);
        }

        /* About Section */
        .about-content {
            line-height: 1.8;
            color: #555;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--olive), var(--sand));
            color: white;
        }

        .counter-box {
            text-align: center;
            padding: 30px;
        }

        .counter-box i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--off-white);
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        /* Vision & Mission */
        .vision-mission-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
        }

        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--sand);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--sand);
            margin-bottom: 20px;
        }

        /* Process Step */
        .process-step {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .process-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--sand);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Service Cards */
        .service-card {
            background: var(--off-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        footer a{
            text-decoration:none !important;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
        }

        .service-card-body h5 {
            color: var(--olive);
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Review Cards */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .review-stars {
            color: var(--sand);
            margin-bottom: 15px;
        }

        /* FAQ Accordion */
        .accordion-button {
            background-color: var(--off-white);
            color: var(--olive);
            font-weight: 500;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--sand);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--sand);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--olive), var(--sand));
            color: white;
            text-align: center;
            padding: 80px 0;
        }

        /* Contact Section */
        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--sand);
            box-shadow: 0 0 0 0.2rem rgba(221, 161, 94, 0.25);
        }

        /* Footer */
        footer {
            background-color: var(--olive);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--sand);
        }

        .input-group .btn {
            background-color: var(--sand);
            border: none;
            color: white;
        }

        .input-group .btn:hover {
            background-color: var(--off-white);
            color: var(--olive);
        }

        hr {
            border-color: rgba(255, 255, 255, 0.2);
            margin: 40px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .process-step-wrapper {
            margin-bottom: 60px;
            position: relative;
        }

        .process-step-new {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .process-step-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(135deg, var(--olive), var(--sand));
            transition: width 0.3s ease;
        }

        .process-step-new:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        }

        .process-step-new:hover::before {
            width: 8px;
        }

        .step-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--sand);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--olive), var(--sand));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .process-step-new:hover .step-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .step-icon i {
            font-size: 36px;
            color: white;
        }

        .step-content {
            flex: 1;
        }

        .step-content h4 {
            color: var(--olive);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .step-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .step-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .step-details li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .step-details i {
            color: var(--sand);
            font-size: 16px;
        }

        .process-line {
            width: 3px;
            height: 40px;
            background: linear-gradient(180deg, var(--sand), transparent);
            margin: 0 auto;
            position: relative;
            left: -3px;
        }

        .process-summary-card {
            background: linear-gradient(135deg, var(--olive), var(--sand));
            padding: 40px;
            border-radius: 20px;
            color: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .process-summary-card h3 {
            color: white;
            font-weight: 600;
        }

        .summary-stat {
            background: rgba(255,255,255,0.15);
            padding: 20px 30px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            min-width: 150px;
        }

        .summary-stat:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-3px);
        }

        .summary-stat i {
            font-size: 32px;
            display: block;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .stat-number {
            display: block;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .process-step-new {
                flex-direction: column;
                text-align: center;
            }

            .step-icon {
                margin: 0 auto;
            }

            .step-number {
                position: static;
                margin-bottom: 20px;
                opacity: 0.3;
            }

            .summary-stat {
                margin-bottom: 15px;
            }
        }

        /* Animation for timeline appearance */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .process-step-wrapper:nth-child(odd) .process-step-new {
            animation: slideInLeft 0.8s ease-out;
        }

        .process-step-wrapper:nth-child(even) .process-step-new {
            animation: slideInRight 0.8s ease-out;
        }
        
