
        :root {
            --primary-dark: #33691E;
            --primary-light: #8BC34A;
            --accent: #FF9800;
            --white: #FFFFFF;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            color: var(--primary-light);
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-dark);
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background-color: var(--accent);
            color: var(--white);
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: #e68900;
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(51, 105, 30, 0.7), rgba(51, 105, 30, 0.7)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }
        
        .hero h1 {
            font-size:6rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        .btn-hero {
            background-color: var(--accent);
            color: var(--white);
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-hero:hover {
            background-color: #e68900;
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--accent);
        }
        
        .section-subtitle {
            color: #666;
            margin-bottom: 50px;
            max-width: 700px;
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            object-fit: cover;
        }
        
        .btn-read-more {
            background-color: var(--primary-dark);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }
        
        .btn-read-more:hover {
            background-color: #2a5a18;
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* Counter Section */
        .counter {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .counter-text {
            font-size: 1.1rem;
        }
        
        /* Vision & Mission Section */
        .vision-mission {
            background-color: #f9f9f9;
        }
        
        .vision-box, .mission-box {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-box:hover, .mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vision-box i, .mission-box i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us Section */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        /* Work Process Section */
        .process {
            background-color: #f9f9f9;
        }
        
        .process-box {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }
        
        .process-box:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -15%;
            width: 30%;
            height: 2px;
            background-color: var(--primary-light);
            z-index: 0;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-dark);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }
        
        .process-box h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .service-content p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .btn-service {
            background-color: var(--primary-dark);
            color: var(--white);
            border: none;
            padding: 8px 20px;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
        }
        
        .btn-service:hover {
            background-color: #2a5a18;
            color: var(--white);
        }
        
        /* Reviews Section */
        .review {
            background-color: #f9f9f9;
        }
        
        .review-card {
            background-color: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            height: 100%;
        }
        
        .review-card .stars {
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .review-card .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-card .reviewer-name {
            font-weight: 600;
            margin-bottom: 0;
        }
        
        .review-card .reviewer-location {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-light);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-light);
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2333691E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(51, 105, 30, 0.9), rgba(51, 105, 30, 0.9)), url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            padding: 80px 0;
            color: var(--white);
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Contact Section */
        .contact-info {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--accent);
            margin-right: 15px;
        }
        
        .contact-form {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
        }
        
        .form-control, .form-select {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 0.25rem rgba(139, 195, 74, 0.25);
        }
        
        .btn-submit {
            background-color: var(--accent);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background-color: #e68900;
            color: var(--white);
        }
        
        /* Footer */
        footer {
            background-color: #222;
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-light);
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 1.8rem;
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--primary-light);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .newsletter {
            background-color: rgba(51, 105, 30, 0.2);
            padding: 20px;
            border-radius: 10px;
        }
        
        .newsletter h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-light);
        }
        
        .newsletter p {
            margin-bottom: 20px;
        }
        
        .newsletter .form-control {
            margin-bottom: 15px;
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: #bbb;
        }
        
        .copyright a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .process-box:not(:last-child)::after {
                display: none;
            }
        }
