
        :root {
            --primary-color: #718355;
            --light-color: #e9f5db;
            --white-color: #ffffff;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            margin-right: 8px;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: #333 !important;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: #5a6844;
            color: var(--white-color);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(113, 131, 85, 0.7), rgba(113, 131, 85, 0.7)), url('https://images.moneycontrol.com/static-mcnews/2024/01/Bajaj-Image-Resize.jpg?impolicy=website&width=770&height=431') center/cover no-repeat;
            padding: 120px 0;
            color: var(--white-color);
            text-align: center;
        }
        
        .hero-title {
            font-size:7rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
        }
        
        /* Vision Mission Section */
        .vision-mission-section {
            padding: 80px 0;
        }
        
        .vision-mission-card {
            background-color: var(--white-color);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 80px 0;
        }
        
        .feature-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* Work Process Section */
        .process-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15%;
            width: 30%;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .process-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
        }
        
        .service-card {
            background-color: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-desc {
            margin-bottom: 20px;
            min-height: 150px;
        }
        
        .btn-read-more {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-read-more:hover {
            color: #5a6844;
            text-decoration: underline;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .review-card {
            background-color: var(--white-color);
            border-radius: 10px;
            padding: 25px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .review-location {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-color);
            color: var(--primary-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .accordion-button {
            font-weight: 600;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(113, 131, 85, 0.9), rgba(113, 131, 85, 0.9)), url('https://images.moneycontrol.com/static-mcnews/2024/01/Bajaj-Image-Resize.jpg?impolicy=website&width=770&height=431') center/cover no-repeat;
            padding: 80px 0;
            color: var(--white-color);
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info-item {
            margin-bottom: 20px;
        }
        
        .contact-info-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        
        .contact-form {
            background-color: var(--white-color);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-control, .form-select {
            border-radius: 0;
            border: 1px solid #ddd;
            padding: 12px 15px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(113, 131, 85, 0.25);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 60px 0 20px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--white-color);
        }
        
        .footer-link {
            color: var(--white-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--light-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
        }
        
        .newsletter-btn {
            background-color: var(--white-color);
            color: var(--primary-color);
            border: none;
            padding: 10px 20px;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .newsletter-btn:hover {
            background-color: var(--light-color);
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
        }
        
        .copyright a {
            color: var(--white-color);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .copyright a:hover {
            color: var(--light-color);
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
        }
