
        :root {
            --primary-green: #047857;
            --light-green: #ECFDF5;
            --accent-green: #10B981;
            --dark-text: #1F2937;
            --light-text: #6B7280;
        }
        
        * {
            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-green) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-green) !important;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
            opacity: 0.1;
            border-radius: 50%;
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            text-transform:uppercase;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-bottom: 30px;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--light-text);
            margin-bottom: 50px;
            font-size: 1.1rem;
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-content {
            padding: 20px;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: white;
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .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;
            opacity: 0.9;
        }
        
        /* Vision Mission */
        .vision-mission-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--accent-green);
            margin-bottom: 20px;
        }
        
        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            font-size: 1.8rem;
            color: var(--primary-green);
        }
        
        /* Service Cards */
        .service-card {
            background: var(--light-green);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .nav-item{
            margin-left:35px;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        .service-card-body p {
            color: var(--light-text);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* Review Cards */
        .review-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            height: 100%;
        }
        
        .review-stars {
            color: #FFC107;
            margin-bottom: 15px;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--primary-green);
            margin-top: 15px;
        }
        
        /* FAQ Accordion */
        .accordion-button {
            background: var(--light-green);
            color: var(--primary-green);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-green);
            color: white;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .contact-info-item i {
            width: 50px;
            height: 50px;
            background: var(--light-green);
            color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.2rem;
        }
        
        /* Footer */
        footer {
            background: var(--dark-text);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-title {
            color: var(--accent-green);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #9CA3AF;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-green);
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #374151;
            color: #9CA3AF;
        }
        
        .copyright a {
            color: var(--accent-green);
            text-decoration: none;
        }
        
        /* Form Styles */
        .form-control, .form-select {
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-green);
            box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
