
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f9f0;
            color: #2d5016;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.08);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #3a7d34 0%, #8bc34a 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1001;
        }

        .logo-icon {
            font-size: 26px;
            color: #4caf50;
        }

        /* Desktop Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
        }

        .nav-links a {
            text-decoration: none;
            color: #3d5a2a;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a:hover {
            color: #4caf50;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(to right, #4caf50, #8bc34a);
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: #3a7d34;
        }

        .nav-links a.active::after {
            width: 100%;
            background: #3a7d34;
        }

        /* Navigation Actions */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
            border: none;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #4caf50;
            color: #4caf50;
        }

        .btn-outline:hover {
            background: #4caf50;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(76, 175, 80, 0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
        }

        /* Mobile Menu Button */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #4caf50;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background 0.3s ease;
            z-index: 1001;
        }

        .mobile-toggle:hover {
            background: rgba(76, 175, 80, 0.1);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        /* Background Images Container */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: contain;
            background-position: top;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .bg-image.active {
            opacity: 1;
        }

        /* Individual background images */
        .bg-image-1 {
            background-image: url('Img/peter\ ceo.jpeg');
        }

        .bg-image-2 {
            background-image: url('Img/maggot.jpeg');
        }

        .bg-image-3 {
            background-image: url('Img/machine.jpeg');
        }

        /* Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(45, 90, 39, 0.7) 0%, rgba(58, 125, 52, 0.5) 100%);
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 30px 20px;
        }

        /* Hero Text Container */
        .hero-text-container {
            max-width: 600px;
            position: relative;
            top: 80px; /* moves the text down */

        }

        /* Individual Text Slides */
        .text-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateX(-100px);
            transition: all 1s ease-in-out;
            visibility: hidden;
        }

        .text-slide.active {
            opacity: 1;
            transform: translateX(0);
            visibility: visible;
            position: relative;
        }

        .text-slide h1 {
            font-size: 56px;
            margin-bottom: 20px;
            color: white;
            line-height: 1.4;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .text-slide p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.6;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .hero .btn {
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
        }

        /* Background transition indicators */
        .transition-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        /* About Section */
        .about-section {
            padding: 120px 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139, 195, 74, 0.05) 0%, rgba(58, 125, 52, 0.05) 100%);
            z-index: 0;
        }

        .about-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-container {
            position: relative;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
            position: relative;
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: translateY(-10px);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(58, 125, 52, 0.2) 0%, rgba(139, 195, 74, 0.1) 100%);
            border-radius: 20px;
        }

        .about-text {
            padding-right: 40px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #4caf50;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-subtitle i {
            font-size: 20px;
        }

        .section-title {
            font-size: 42px;
            color: #2d5a27;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .section-title span {
            background: linear-gradient(135deg, #3a7d34 0%, #8bc34a 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-description {
            font-size: 18px;
            color: #4a6b2f;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin: 40px 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
            transform: scale(1.1);
        }

        .feature-icon i {
            font-size: 22px;
            color: #3a7d34;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon i {
            color: white;
        }

        .feature-content h4 {
            font-size: 18px;
            color: #2d5a27;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .feature-content p {
            font-size: 15px;
            color: #4a6b2f;
            line-height: 1.6;
        }

        .about-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #e8f5e9;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: #3a7d34;
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-label {
            font-size: 16px;
            color: #4a6b2f;
            font-weight: 500;
        }

        /* Mission Section - Black Soldier Fly Focus */
        .mission-section {
            padding: 120px 0;
            background-color: #f9fdf5;
            position: relative;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,50 Q50,20 80,50 Q50,80 20,50 Z" fill="%234caf50" opacity="0.05"/></svg>');
            background-size: 200px;
            z-index: 0;
        }

        .mission-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .mission-icon {
            font-size: 60px;
            color: #3a7d34;
            margin-bottom: 30px;
        }

        .mission-highlight {
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(58, 125, 52, 0.2);
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .mission-highlight::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: float 20s linear infinite;
            z-index: 0;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-20px, -20px) rotate(360deg); }
        }

        .mission-highlight h3 {
            font-size: 28px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .mission-highlight p {
            font-size: 18px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Services Section */
        .services-section {
            padding: 120px 0;
            background-color: #ffffff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .service-card {
            background: #f9fdf5;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(76, 175, 80, 0.15);
            border-color: #4caf50;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4caf50, #8bc34a);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
            transform: rotateY(180deg);
        }

        .service-icon i {
            font-size: 32px;
            color: #3a7d34;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon i {
            color: white;
            transform: rotateY(-180deg);
        }

        .service-card h3 {
            font-size: 24px;
            color: #2d5a27;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #4a6b2f;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* Target Industries Section */
        .industries-section {
            padding: 120px 0;
            background-color: #f9fdf5;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .industry-card {
            background: white;
            border-radius: 15px;
            padding: 0;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e8f5e9;
            overflow: hidden;
            height: 350px;
            display: flex;
            flex-direction: column;
        }

        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
        }

        .industry-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .industry-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .industry-card:hover .industry-image img {
            transform: scale(1.1);
        }

        .industry-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(58, 125, 52, 0.1), rgba(58, 125, 52, 0.3));
        }

        .industry-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .industry-icon {
            font-size: 32px;
            color: #4caf50;
            margin-bottom: 15px;
        }

        .industry-card h4 {
            font-size: 20px;
            color: #2d5a27;
            margin-bottom: 10px;
        }

        .industry-card p {
            color: #4a6b2f;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Testimonials Section - UPDATED WITH SLIDING */
        .testimonials-section {
            padding: 120px 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,20 Q50,5 70,20 Q85,40 70,60 Q50,85 30,60 Q15,40 30,20 Z" fill="%234caf50" opacity="0.03"/></svg>');
            background-size: 150px;
            z-index: 0;
        }

        .testimonials-container {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonials-slider {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.8s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-slide.leaving {
            opacity: 0;
            transform: translateX(-100px);
        }

        .testimonial-card {
            background: #f9fdf5;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.3s ease;
            border-left: 5px solid #4caf50;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 35px;
            font-size: 80px;
            color: #4caf50;
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-text {
            font-size: 18px;
            color: #4a6b2f;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #e8f5e9;
        }

        .author-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .author-icon i {
            font-size: 24px;
            color: #3a7d34;
        }

        .author-info h4 {
            font-size: 20px;
            color: #2d5a27;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .author-info p {
            font-size: 15px;
            color: #4caf50;
            font-weight: 500;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e8f5e9;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: #4caf50;
            transform: scale(1.3);
        }

        .testimonial-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #e8f5e9;
        }

        .testimonial-stat {
            text-align: center;
        }

        .testimonial-stat .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: #3a7d34;
            margin-bottom: 5px;
        }

        .testimonial-stat .stat-label {
            font-size: 16px;
            color: #4a6b2f;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #2d5a27 0%, #3a7d34 100%);
            text-align: center;
            color: white;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .cta-section .btn-primary {
            background: white;
            color: #3a7d34;
        }

        .cta-section .btn-outline {
            background: transparent;
            border-color: white;
            color: white;
        }

        .cta-section .btn-outline:hover {
            background: white;
            color: #3a7d34;
        }

        /* Footer - UPDATED DESIGN */
        footer {
            background: linear-gradient(135deg, #1e3e1a 0%, #2d5a27 100%);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,50 Q50,20 80,50 Q50,80 20,50 Z" fill="%238bc34a" opacity="0.05"/></svg>');
            background-size: 150px;
            z-index: 0;
        }

        .footer-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #8bc34a;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #8bc34a;
            border-radius: 2px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 800;
            color: #8bc34a;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo i {
            font-size: 26px;
        }

        .footer-about p {
            color: #e8f5e9;
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(139, 195, 74, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8bc34a;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #8bc34a;
            color: white;
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #e8f5e9;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: #8bc34a;
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 12px;
            color: #8bc34a;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #e8f5e9;
            font-size: 15px;
        }

        .contact-item i {
            color: #8bc34a;
            font-size: 18px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .newsletter {
            margin-top: 20px;
        }

        .newsletter h4 {
            font-size: 16px;
            color: #e8f5e9;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid rgba(139, 195, 74, 0.3);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 14px;
        }

        .newsletter-input::placeholder {
            color: #a5d6a7;
        }

        .newsletter-btn {
            padding: 10px 20px;
            background: #8bc34a;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .newsletter-btn:hover {
            background: #7cb342;
            transform: translateY(-2px);
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a5d6a7;
            font-size: 14px;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        .footer-links-bottom {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }

        .footer-links-bottom a {
            color: #a5d6a7;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .footer-links-bottom a:hover {
            color: #8bc34a;
        }

        /* Responsive Design */
        @media screen and (max-width: 1100px) {
            .nav-links {
                gap: 30px;
            }
            
            .text-slide h1 {
                font-size: 48px;
            }
            
            .about-content {
                gap: 60px;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media screen and (max-width: 992px) {
            .nav-links {
                gap: 24px;
            }
            
            .btn {
                padding: 8px 18px;
                font-size: 14px;
            }
            
            .text-slide h1 {
                font-size: 42px;
            }
            
            .text-slide p {
                font-size: 18px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .about-text {
                padding-right: 0;
                order: 2;
            }
            
            .about-image-container {
                order: 1;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-slider {
                height: 380px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-section .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media screen and (max-width: 768px) {
            .hero {
                margin-top: 70px;
                height: 85vh;
            }
            
            .navbar {
                padding: 15px 0;
            }

            .mobile-toggle {
                display: block;
                order: 2;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                z-index: 999;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-actions {
                display: none;
            }

            .logo span {
                font-size: 24px;
            }
            
            /* Mobile text positioning */
            .hero-content {
                align-items: flex-start;
                padding-top: 60px;
            }
            
            .hero-text-container {
                max-width: 100%;
                text-align: center;
            }
            
            .text-slide h1 {
                font-size: 36px;
                margin-bottom: 15px;
            }
            
            .text-slide p {
                font-size: 16px;
                margin-bottom: 20px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                margin-top: 30px;
            }
            
            .hero .btn {
                width: 100%;
                max-width: 300px;
                padding: 12px 24px;
            }
            
            .about-section, .mission-section, .services-section, .industries-section, .testimonials-section {
                padding: 80px 0;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .mission-highlight {
                padding: 30px 20px;
            }
            
            .cta-section h2 {
                font-size: 32px;
            }
            
            .industries-grid {
                grid-template-columns: 1fr;
            }
            
            .industry-card {
                height: 320px;
            }
            
            .testimonial-card {
                padding: 40px 30px;
            }
            
            .testimonials-slider {
                height: 350px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media screen and (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            
            .mobile-toggle {
                font-size: 22px;
                padding: 6px;
            }
            
            .text-slide h1 {
                font-size: 32px;
            }
            
            .hero-content {
                padding-top: 80px;
            }
            
            .hero {
                height: 80vh;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 25px;
                align-items: center;
            }
            
            .stat-item {
                width: 100%;
            }
            
            .industry-card {
                height: 300px;
            }
            
            .testimonial-stats {
                flex-direction: column;
                gap: 25px;
            }
            
            .testimonials-slider {
                height: 400px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }



        @media (max-width: 768px) {
  .hero-text-container h1 {
    font-size: 1.8rem;
  }
  .hero-text-container p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}

    /* Preloader Styles */
    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e9 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .preloader.fade-out {
        opacity: 0;
        visibility: hidden;
    }

    .preloader-content {
        text-align: center;
        max-width: 400px;
        padding: 40px;
        animation: fadeIn 0.8s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Leaf Spinner Animation */
    .leaf-spinner {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 30px;
    }

    .leaf-circle {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: spin 3s linear infinite;
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    }

    .leaf-circle i {
        font-size: 50px;
        color: white;
        animation: leafPulse 2s ease-in-out infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes leafPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    .leaf-pulse {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 3px solid #4caf50;
        border-radius: 50%;
        animation: pulse 2s ease-out infinite;
        opacity: 0;
    }

    @keyframes pulse {
        0% {
            transform: scale(0.8);
            opacity: 0.8;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    /* Loading Text Animation */
    .loading-text {
        font-size: 28px;
        font-weight: 800;
        background: linear-gradient(135deg, #3a7d34 0%, #8bc34a 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .loading-word {
        display: inline-block;
        opacity: 0;
        animation: bounceIn 0.5s ease forwards;
    }

    .loading-word:nth-child(1) { animation-delay: 0.1s; }
    .loading-word:nth-child(2) { animation-delay: 0.2s; }
    .loading-word:nth-child(3) { animation-delay: 0.3s; }
    .loading-word:nth-child(4) { animation-delay: 0.4s; }
    .loading-word:nth-child(5) { animation-delay: 0.5s; }
    .loading-word:nth-child(6) { animation-delay: 0.6s; }
    .loading-word:nth-child(7) { animation-delay: 0.7s; }
    .loading-word:nth-child(8) { animation-delay: 0.8s; }
    .loading-word:nth-child(9) { animation-delay: 0.9s; }
    .loading-word:nth-child(10) { animation-delay: 1.0s; }
    .loading-word:nth-child(11) { animation-delay: 1.1s; }
    .loading-word:nth-child(12) { animation-delay: 1.2s; }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        60% {
            opacity: 1;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Loading Progress */
    .loading-progress {
        margin-bottom: 20px;
    }

    .progress-bar {
        width: 100%;
        height: 6px;
        background: #e0e0e0;
        border-radius: 3px;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #4caf50, #8bc34a);
        border-radius: 3px;
        width: 0%;
        animation: progressAnimation 3s ease-in-out;
    }

    @keyframes progressAnimation {
        0% { width: 0%; }
        20% { width: 30%; }
        50% { width: 70%; }
        80% { width: 90%; }
        100% { width: 100%; }
    }

    .progress-text {
        font-size: 14px;
        color: #4a6b2f;
        font-weight: 500;
    }

    .loading-dots {
        display: inline-block;
        width: 30px;
        text-align: left;
    }

    .loading-dots::after {
        content: '...';
        animation: dots 1.5s steps(4, end) infinite;
    }

    @keyframes dots {
        0%, 20% { content: '.'; }
        40% { content: '..'; }
        60%, 100% { content: '...'; }
    }

    /* Loading Message */
    .loading-message p {
        color: #4a6b2f;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        opacity: 0;
        animation: fadeInUp 0.8s ease 1s forwards;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .preloader-content {
            padding: 20px;
            max-width: 300px;
        }
        
        .leaf-spinner {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }
        
        .leaf-circle i {
            font-size: 35px;
        }
        
        .loading-text {
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .loading-message p {
            font-size: 14px;
        }
    }

    @media screen and (max-width: 480px) {
        .leaf-spinner {
            width: 60px;
            height: 60px;
        }
        
        .leaf-circle i {
            font-size: 28px;
        }
        
        .loading-text {
            font-size: 18px;
            letter-spacing: 1px;
        }
        
        .progress-text {
            font-size: 12px;
        }
    }


    /* Moving Text Banner */
    .moving-text-banner {
        position: fixed;
        top: 100px;
        right: 0;
        width: 40%;
        height: 45px;
        background: linear-gradient(90deg, rgba(58, 125, 52, 0.9), rgba(179, 204, 181, 0.85));
        color: white;
        overflow: hidden;
        z-index: 1;
        border-bottom-left-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        border-left: 4px solid #ffc107;
        pointer-events: none; /* Prevent covering hero text */
    }

    .moving-text-container {
        flex: 1;
        overflow: hidden;
        height: 100%;
        position: relative;
        pointer-events: none;
    }

    .moving-text-content {
        display: inline-flex;
        animation: scrollText 20s linear infinite;
        white-space: nowrap;
        height: 100%;
        align-items: center;
        pointer-events: none;
    }

    @keyframes scrollText {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    .moving-text-item {
        display: inline-flex;
        align-items: center;
        padding: 0 25px;
        font-size: 14px;
        font-weight: 500;
        height: 100%;
        pointer-events: none;
    }

    .moving-text-item i {
        margin-right: 10px;
        font-size: 16px;
        color: #ffc107;
    }

    /* Responsive Design */
    @media screen and (max-width: 1100px) {
        .moving-text-banner {
            width: 50%;
            top: 100px;
        }
        
        .moving-text-item {
            padding: 0 20px;
            font-size: 13px;
        }
    }

    @media screen and (max-width: 768px) {
        .moving-text-banner {
            width: 100%;
            top: 90px;
            height: 40px;
            border-radius: 0;
            border-left: none;
            border-bottom: 3px solid #ffc107;
        }
        
        .moving-text-item {
            padding: 0 20px;
            font-size: 13px;
        }
        
        .moving-text-item i {
            font-size: 14px;
            margin-right: 8px;
        }
        
        @keyframes scrollText {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
    }

    @media screen and (max-width: 480px) {
        .moving-text-banner {
            height: 35px;
            top: 90px;
        }
        
        .moving-text-item {
            padding: 0 15px;
            font-size: 12px;
        }
        
        .moving-text-item i {
            font-size: 12px;
            margin-right: 6px;
        }
    }

    /* Ensure hero text is not covered */
    .hero-content {
        position: relative;
        z-index: 101;
    }