
        /* Global Styles */
        :root {
            --primary: #2E7D32;
            --primary-light: #4CAF50;
            --secondary: #FFC107;
            --dark: #1B5E20;
            --light: #F1F8E9;
            --gray: #757575;
            --white: #FFFFFF;
            --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 100px 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            color: var(--dark);
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 18px;
            color: var(--gray);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary);
            border-radius: 50px;
            z-index: -2;
        }
        
        .btn:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--dark);
            transition: var(--transition);
            border-radius: 50px;
            z-index: -1;
        }
        
        .btn:hover:before {
            width: 100%;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: #333;
            box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
        }
        
        .btn-secondary:before {
            background-color: #FFA000;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .section-title:hover h2::after {
            width: 120px;
        }
        
        /* Fixed Navigation Bar */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 10px 0;
            background-color: var(--white);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            z-index: 1001;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--secondary);
            transition: var(--transition);
        }
        
        .logo:hover i {
            transform: rotate(15deg) scale(1.2);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            transition: var(--transition);
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            z-index: 1001;
        }
        
        /* Mobile Navigation */
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .nav-links a {
                font-size: 20px;
            }
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Img/chinhhunky-XSjpCr0bWqE-unsplash.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.4) 0%, rgba(76, 175, 80, 0.2) 100%);
            z-index: 0;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeIn 1.5s ease;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--white);
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: var(--light);
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* How It Works Section */
        .how-it-works {
            background-color: var(--light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .how-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .how-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            text-align: left;
        }
        
        .how-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            position: relative;
        }
        
        .image-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .image-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .image-slide.active {
            opacity: 1;
        }
        
        /* Solutions Section */
        .solutions {
            text-align: center;
            position: relative;
        }
        
        .solutions::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(Img/filipp-romanovski-BFTGIpjm-aM-unsplash.jpg);
            background-size: cover;
            background-attachment: fixed;
            opacity: 0.05;
            z-index: -1;
        }
        
        .solutions-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .solution-item {
            flex-basis: 30%;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 30px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .solution-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }
        
        .solution-item:hover::before {
            width: 100%;
            opacity: 0.1;
        }
        
        .solution-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .solution-item i {
            font-size: 50px;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .solution-item:hover i {
            color: var(--secondary);
            transform: scale(1.2);
        }
        
        /* Features Section */
        .features {
            background-color: var(--light);
            position: relative;
        }
        
        .features::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-color: var(--white);
            z-index: 0;
        }
        
        .features-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .feature {
            flex-basis: 30%;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 30px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            opacity: 0.1;
            transition: var(--transition);
            z-index: -1;
        }
        
        .feature:hover::before {
            height: 100%;
        }
        
        .feature:hover {
            transform: translateY(-5px);
        }
        
        .feature i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .feature:hover i {
            color: var(--secondary);
            transform: rotate(15deg) scale(1.2);
        }
        
        /* Impact Section */
        .impact {
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(Img/irewolede-PvwdlXqo85k-unsplash.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            position: relative;
        }
        
        .impact .section-title h2 {
            color: var(--white);
        }
        
        .impact p {
            color: var(--light);
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .stat-item {
            flex-basis: 30%;
            min-width: 200px;
            margin-bottom: 30px;
            padding: 20px;
            position: relative;
        }
        
        .stat-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .stat-item:hover::after {
            width: 80px;
        }
        
        .stat-number {
            font-size: 60px;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
            transition: var(--transition);
        }
        
        .stat-item:hover .stat-number {
            transform: scale(1.2);
        }
        
        /* Get Started Section */
        .get-started {
            text-align: center;
            padding: 100px 0;
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .get-started::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(Img/mostafijur-rahman-nasim-OMIY-e3L24s-unsplash.jpg);
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            border-radius: 20px;
            color: var(--white);
            box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .cta-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 50px rgba(46, 125, 50, 0.4);
        }
        
        .cta-container h2 {
            color: var(--white);
        }
        
        .cta-container p {
            color: var(--light);
        }
        
        /* Footer */
        footer {
            background-color: #1B5E20;
            color: var(--white);
            padding: 60px 0 30px;
            position: relative;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        
        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 22px;
        }
        
        .footer-section p, .footer-section a {
            color: #E8F5E9;
            margin-bottom: 15px;
            display: block;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-section a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .solution-item, .feature {
                flex-basis: 45%;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 80px 0;
            }
            
            .hero {
                margin-top: 70px;
                height: auto;
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .solution-item, .feature {
                flex-basis: 100%;
            }
            
            .stat-item {
                flex-basis: 45%;
            }
            
            .footer-section {
                flex-basis: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .stat-item {
                flex-basis: 100%;
            }
            
            .stat-number {
                font-size: 45px;
            }
            
            .cta-container {
                padding: 30px;
            }
        }


        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1708&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
        }
        
        .testimonials .section-title h2 {
            color: var(--white);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            display: none;
        }
        
        .testimonial.active {
            display: block;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary);
        }
        
        .testimonial-role {
            font-size: 14px;
            opacity: 0.8;
        }
        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            color: var(--white);
            text-align: center;
        }
        
        .newsletter .section-title h2 {
            color: var(--white);
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
        }