
        :root {
            --primary-green: #047857;
            --light-green: #6EE7B7;
            --orange: #FDBA74;
            --cream: #FFFBEB;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .nav-item{
            margin-left:25px !important;
        }

        /* 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;
            color: var(--primary-green);
        }

        .navbar-nav .nav-link {
            color: var(--primary-green) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--orange) !important;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            color: var(--white);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(4, 120, 87, 0.3);
            color: var(--white);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--cream), var(--white));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--light-green));
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .about-content h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .about-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            color: var(--white);
        }

        .counter-box {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .counter-box:hover {
            transform: translateY(-5px);
        }

        .counter-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--orange);
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision & Mission */
        .vision-mission-card {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .vision-mission-card i {
            font-size: 3rem;
            color: var(--orange);
            margin-bottom: 20px;
        }

        .vision-mission-card h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        /* Process Section */
        .process-step {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .process-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--orange);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .process-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin: 20px 0;
        }

        /* Feature Box */
        .feature-box {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            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-icon {
            font-size: 3rem;
            color: var(--orange);
            margin-bottom: 20px;
        }

        .feature-box h5 {
            color: var(--primary-green);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Service Cards */
        .service-card {
            background: var(--cream);
            border-radius: 15px;
            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-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .service-content {
            padding: 25px;
        }

        .service-title {
            color: var(--primary-green);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .service-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Review Cards */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .review-stars {
            color: var(--orange);
            margin-bottom: 15px;
        }

        .review-card p {
            color: #666;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            color: var(--primary-green);
            font-weight: 600;
            text-align: right;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--cream);
            color: var(--primary-green);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--light-green);
            color: var(--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(--light-green));
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Contact Section */
        .contact-info {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .contact-info h4 {
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .contact-info div {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #666;
        }

        .contact-info i {
            color: var(--orange);
            margin-right: 15px;
            font-size: 1.2rem;
            width: 20px;
        }

        /* Footer */
        footer {
            background: var(--primary-green);
            color: var(--white);
            padding: 50px 0 20px;
        }

        footer h5 {
            color: var(--light-green);
            margin-bottom: 20px;
        }

        .footer-links p {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom a {
            color: var(--light-green);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--orange);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
