
        :root {
            --beige: #f5f5dc;
            --taupe: #8B7D6B;
            --dark-taupe: #5D4E37;
            --light-beige: #faf8f3;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            font-weight: bold;
            color: var(--dark-taupe) !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-taupe) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--taupe) !important;
        }
        
        .btn-cta {
            background-color: var(--taupe);
            color: white;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: var(--dark-taupe);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(245, 245, 220, 0.7), rgba(245, 245, 220, 0.7)), url('https://static.vecteezy.com/system/resources/thumbnails/006/654/314/small/businessman-draws-graphs-of-business-growth-and-analyzes-financial-and-investment-data-planning-business-finance-and-investment-strategies-on-business-finance-background-photo.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: var(--dark-taupe);
        }
        
        .hero-title {
            font-size:5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-taupe);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--taupe);
        }
        
        .section-subtitle {
            color: #666;
            margin-bottom: 50px;
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--taupe);
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background-color: var(--light-beige);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .vision-mission-icon {
            font-size: 2.5rem;
            color: var(--taupe);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--taupe);
            margin-bottom: 20px;
        }
        
        /* Work Process */
        .process-box {
            text-align: center;
            position: relative;
            padding: 30px 15px;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background-color: var(--taupe);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .process-icon {
            font-size: 2.5rem;
            color: var(--taupe);
            margin-bottom: 20px;
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--light-beige);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            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: 300px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-body {
            padding: 25px;
        }
        
        .service-title {
            font-weight: bold;
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-taupe);
        }
        
        /* Reviews Section */
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-author {
            font-weight: bold;
            color: var(--dark-taupe);
        }
        
        .review-author span {
            font-weight: normal;
            color: #666;
            display: block;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--beige);
            color: var(--dark-taupe);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--taupe);
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--taupe);
            color: white;
            padding: 80px 0;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-cta-light {
            background-color: white;
            color: var(--taupe);
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-cta-light:hover {
            background-color: var(--light-beige);
            color: var(--dark-taupe);
            transform: translateY(-2px);
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: var(--light-beige);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-icon {
            font-size: 1.5rem;
            color: var(--taupe);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-taupe);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--beige);
        }
        
        .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;
        }
        
        .footer-links a:hover {
            color: var(--beige);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
        }
        
        .newsletter-btn {
            background-color: var(--taupe);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-btn:hover {
            background-color: var(--dark-taupe);
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: var(--beige);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }

        .nav-item{
            margin-left:25px;
        }
