
        :root {
            --primary-brown: #78350F;
            --light-yellow: #FEF3C7;
            --primary-orange: #D97706;
            --dark-text: #1F2937;
            --light-gray: #F9FAFB;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-brown) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            color: var(--primary-orange);
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--primary-brown) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-orange) !important;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary-orange), #B45309);
            color: white !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-brown), #000000);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://png.pngtree.com/thumb_back/fh260/background/20210902/pngtree-technology-and-finance-analysis-and-synthesis-image_785333.jpg') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        .nav-item{
            margin-left:35px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-brown);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-orange);
        }

        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--light-yellow), #FDE68A);
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-brown);
        }

        .counter-label {
            font-size: 1.1rem;
            color: var(--primary-brown);
            margin-top: 10px;
        }

        /* Feature Box */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            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-box i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }

        .feature-box h4 {
            color: var(--primary-brown);
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Service Cards */
        .service-card {
            background: var(--light-yellow);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-icon {
            background: var(--primary-orange);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto;
            font-size: 2rem;
        }

        .service-card h4 {
            color: var(--primary-brown);
            font-weight: bold;
            margin-bottom: 15px;
            padding: 0 20px;
        }

        .service-card p {
            padding: 0 20px;
            margin-bottom: 20px;
            color: var(--dark-text);
        }

        /* Review Cards */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--light-yellow);
            font-family: Georgia, serif;
        }

        .stars {
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .form-control, .form-select {
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);
        }

        /* Footer */
        footer {
            background: var(--primary-brown);
            color: white;
            padding: 60px 0 20px;
        }

        footer h5 {
            color: var(--primary-orange);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
        }

        /* Accordion */
        .accordion-button {
            background: var(--light-yellow);
            color: var(--primary-brown);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-orange);
            color: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
