{"id":7,"date":"2026-05-17T11:17:54","date_gmt":"2026-05-17T11:17:54","guid":{"rendered":"https:\/\/globalagro-ltd.com\/?page_id=7"},"modified":"2026-05-17T11:35:44","modified_gmt":"2026-05-17T11:35:44","slug":"home","status":"publish","type":"page","link":"https:\/\/globalagro-ltd.com\/","title":{"rendered":"Home"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Global Agro Ltd. &#8211; Advanced Agricultural Solutions<\/title>\n    \n    <!-- Google Fonts -->\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;800&#038;display=swap\" rel=\"stylesheet\">\n    \n    <!-- FontAwesome for Icons -->\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    \n    <style>\n        \/* Base Reset *\/\n        *, *::before, *::after {\n            box-sizing: border-box;\n            margin: 0;\n            padding: 0;\n        }\n\n        :root {\n            --primary-color: #27ae60;\n            --primary-dark: #1e8449;\n            --secondary-color: #f39c12;\n            --secondary-dark: #d68910;\n            --text-dark: #2c3e50;\n            --text-light: #7f8c8d;\n            --bg-light: #f4f7f6;\n            --white: #ffffff;\n            --transition: all 0.3s ease;\n        }\n\n        body {\n            font-family: 'Inter', sans-serif;\n            line-height: 1.6;\n            color: var(--text-dark);\n            background-color: var(--white);\n            overflow-x: hidden;\n        }\n\n        \/* Typography *\/\n        h1, h2, h3, h4 {\n            line-height: 1.3;\n            font-weight: 800;\n        }\n\n        .section-title {\n            text-align: center;\n            font-size: 2.8rem;\n            margin-bottom: 1rem;\n            color: var(--text-dark);\n        }\n\n        .section-subtitle {\n            text-align: center;\n            font-size: 1.15rem;\n            color: var(--text-light);\n            margin-bottom: 4rem;\n            max-width: 700px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n\n        \/* Layout *\/\n        .container {\n            width: 90%;\n            max-width: 1200px;\n            margin: 0 auto;\n            position: relative;\n            z-index: 2;\n        }\n\n        .section {\n            padding: 7rem 0;\n            position: relative;\n        }\n\n        .bg-light {\n            background-color: var(--bg-light);\n        }\n\n        \/* Absolute embedded SVGs *\/\n        .absolute-bg {\n            position: absolute;\n            top: 0; left: 0; width: 100%; height: 100%;\n            object-fit: cover;\n            z-index: 0;\n        }\n\n        .overlay-dark {\n            position: absolute;\n            top: 0; left: 0; width: 100%; height: 100%;\n            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));\n            z-index: 1;\n        }\n\n        \/* Buttons *\/\n        .btn {\n            display: inline-block;\n            padding: 1rem 2.5rem;\n            font-size: 1rem;\n            font-weight: 600;\n            text-decoration: none;\n            border-radius: 50px;\n            transition: var(--transition);\n            cursor: pointer;\n            border: none;\n            text-align: center;\n        }\n\n        .btn-primary {\n            background-color: var(--primary-color);\n            color: var(--white);\n            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);\n        }\n\n        .btn-primary:hover {\n            background-color: var(--primary-dark);\n            transform: translateY(-3px);\n            box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);\n        }\n\n        .btn-secondary {\n            background-color: var(--white);\n            color: var(--text-dark);\n            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);\n        }\n\n        .btn-secondary:hover {\n            background-color: var(--secondary-color);\n            color: var(--white);\n            transform: translateY(-3px);\n            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);\n        }\n\n        \/* 1. Hero Section *\/\n        .hero {\n            height: 100vh;\n            min-height: 700px;\n            display: flex;\n            align-items: center;\n            position: relative;\n        }\n\n        .hero-content {\n            max-width: 850px;\n            color: var(--white);\n        }\n\n        .hero h1 {\n            font-size: 4.5rem;\n            margin-bottom: 1.5rem;\n            animation: fadeInUp 1s ease;\n        }\n\n        .hero p {\n            font-size: 1.3rem;\n            font-weight: 300;\n            margin-bottom: 3rem;\n            opacity: 0.95;\n            line-height: 1.8;\n            animation: fadeInUp 1s ease 0.2s both;\n        }\n\n        .hero-buttons {\n            display: flex;\n            gap: 1.5rem;\n            animation: fadeInUp 1s ease 0.4s both;\n        }\n\n        \/* 2. Features *\/\n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n            gap: 2rem;\n        }\n\n        .feature-box {\n            background: var(--white);\n            padding: 3rem 2rem;\n            text-align: center;\n            border-radius: 15px;\n            box-shadow: 0 10px 30px rgba(0,0,0,0.03);\n            transition: var(--transition);\n            border-bottom: 4px solid transparent;\n        }\n\n        .feature-box:hover {\n            transform: translateY(-10px);\n            border-bottom-color: var(--primary-color);\n            box-shadow: 0 15px 40px rgba(0,0,0,0.08);\n        }\n\n        .feature-box i {\n            font-size: 3rem;\n            color: var(--primary-color);\n            margin-bottom: 1.5rem;\n        }\n\n        .feature-box h3 {\n            font-size: 1.4rem;\n            margin-bottom: 1rem;\n        }\n\n        .feature-box p {\n            color: var(--text-light);\n        }\n\n        \/* 3. Services *\/\n        .services-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));\n            gap: 2.5rem;\n        }\n\n        .service-card {\n            background: var(--white);\n            border-radius: 20px;\n            overflow: hidden;\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);\n            transition: var(--transition);\n        }\n\n        .service-card:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);\n        }\n\n        .service-img {\n            height: 240px;\n            position: relative;\n            overflow: hidden;\n        }\n\n        .service-icon {\n            position: absolute;\n            bottom: -30px;\n            right: 30px;\n            width: 70px;\n            height: 70px;\n            background: var(--secondary-color);\n            color: var(--white);\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 1.8rem;\n            box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);\n            z-index: 3;\n            transition: var(--transition);\n        }\n\n        .service-card:hover .service-icon {\n            background: var(--primary-color);\n            transform: rotate(360deg);\n        }\n\n        .service-content {\n            padding: 3rem 2.5rem 2.5rem;\n        }\n\n        .service-content h3 {\n            font-size: 1.5rem;\n            margin-bottom: 1rem;\n        }\n\n        .service-content p {\n            color: var(--text-light);\n        }\n\n        \/* 4. Tech Ecosystem (New) *\/\n        .tech-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 3rem;\n        }\n        \n        .tech-item {\n            display: flex;\n            align-items: flex-start;\n            gap: 1.5rem;\n        }\n\n        .tech-icon {\n            width: 60px;\n            height: 60px;\n            background: rgba(243, 156, 18, 0.1);\n            color: var(--secondary-color);\n            border-radius: 15px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 1.5rem;\n            flex-shrink: 0;\n            transition: var(--transition);\n        }\n\n        .tech-item:hover .tech-icon {\n            background: var(--secondary-color);\n            color: var(--white);\n        }\n\n        \/* 5. Process *\/\n        .process-steps {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));\n            gap: 2rem;\n        }\n\n        .step {\n            text-align: center;\n            padding: 2rem;\n            background: var(--white);\n            border-radius: 15px;\n            box-shadow: 0 5px 20px rgba(0,0,0,0.03);\n            border: 1px solid rgba(0,0,0,0.05);\n        }\n\n        .step-number {\n            width: 80px;\n            height: 80px;\n            background: rgba(39, 174, 96, 0.1);\n            color: var(--primary-color);\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 2rem;\n            font-weight: 800;\n            margin: 0 auto 1.5rem;\n            transition: var(--transition);\n        }\n\n        .step:hover .step-number {\n            background: var(--primary-color);\n            color: var(--white);\n        }\n\n        \/* 6. Global Footprint (New) *\/\n        .global-section {\n            color: var(--white);\n            position: relative;\n        }\n\n        .global-section::before {\n            content: '';\n            position: absolute;\n            top: 0; left: 0; width: 100%; height: 100%;\n            background: rgba(11, 83, 69, 0.9);\n            z-index: 1;\n        }\n\n        .global-content {\n            text-align: center;\n            max-width: 800px;\n            margin: 0 auto;\n        }\n        \n        .global-content h2 {\n            color: var(--white);\n        }\n\n        .regions-grid {\n            display: grid;\n            grid-template-columns: repeat(3, 1fr);\n            gap: 2rem;\n            margin-top: 3rem;\n        }\n\n        .region-card {\n            background: rgba(255,255,255,0.1);\n            backdrop-filter: blur(5px);\n            padding: 2rem;\n            border-radius: 15px;\n            border: 1px solid rgba(255,255,255,0.2);\n        }\n\n        \/* 7. Stats *\/\n        .stats {\n            background-color: var(--primary-color);\n            color: var(--white);\n            padding: 6rem 0;\n            position: relative;\n        }\n\n        .stats-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n            gap: 3rem;\n            text-align: center;\n        }\n\n        .stat-item h2 {\n            font-size: 4rem;\n            margin-bottom: 0.5rem;\n            color: var(--secondary-color);\n        }\n\n        .stat-item p {\n            font-size: 1.2rem;\n            font-weight: 500;\n            text-transform: uppercase;\n            letter-spacing: 2px;\n        }\n\n        \/* 8. Testimonials *\/\n        .testimonials-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));\n            gap: 2.5rem;\n        }\n\n        .testimonial-card {\n            background: var(--white);\n            padding: 3rem 2.5rem;\n            border-radius: 20px;\n            box-shadow: 0 10px 40px rgba(0,0,0,0.04);\n            position: relative;\n        }\n\n        .testimonial-card::before {\n            content: '\\f10d';\n            font-family: 'Font Awesome 6 Free';\n            font-weight: 900;\n            position: absolute;\n            top: 2rem; right: 2.5rem;\n            font-size: 3rem;\n            color: rgba(39, 174, 96, 0.1);\n        }\n\n        .testimonial-card p {\n            font-style: italic;\n            font-size: 1.1rem;\n            margin-bottom: 2rem;\n        }\n\n        .testimonial-author {\n            display: flex;\n            align-items: center;\n        }\n\n        .avatar-icon {\n            width: 50px;\n            height: 50px;\n            background: var(--bg-light);\n            color: var(--primary-color);\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 1.5rem;\n            margin-right: 1.2rem;\n        }\n\n        \/* 9. FAQ (New) *\/\n        .faq-container {\n            max-width: 800px;\n            margin: 0 auto;\n        }\n        \n        .faq-item {\n            background: var(--white);\n            border-radius: 10px;\n            margin-bottom: 1rem;\n            box-shadow: 0 5px 15px rgba(0,0,0,0.03);\n            overflow: hidden;\n        }\n\n        .faq-question {\n            padding: 1.5rem 2rem;\n            font-size: 1.2rem;\n            font-weight: 600;\n            cursor: pointer;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            transition: var(--transition);\n        }\n\n        .faq-question:hover {\n            color: var(--primary-color);\n        }\n\n        .faq-answer {\n            padding: 0 2rem;\n            max-height: 0;\n            overflow: hidden;\n            transition: max-height 0.3s ease, padding 0.3s ease;\n            color: var(--text-light);\n        }\n\n        .faq-item.active .faq-answer {\n            padding: 0 2rem 1.5rem;\n            max-height: 200px;\n        }\n\n        .faq-item.active .faq-question i {\n            transform: rotate(180deg);\n        }\n\n        \/* 10. About Us *\/\n        .about {\n            background-color: var(--white);\n            border-top: 1px solid rgba(0,0,0,0.05);\n        }\n\n        .about-grid {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 5rem;\n            align-items: center;\n        }\n\n        .about-image {\n            position: relative;\n            border-radius: 20px;\n            overflow: hidden;\n            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);\n            height: 500px;\n        }\n\n        .experience-badge {\n            position: absolute;\n            bottom: -20px; left: -20px;\n            background: var(--secondary-color);\n            color: var(--white);\n            padding: 2.5rem;\n            border-radius: 50%;\n            width: 180px; height: 180px;\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            justify-content: center;\n            text-align: center;\n            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);\n            z-index: 3;\n        }\n\n        .experience-badge .years {\n            font-size: 3.5rem; font-weight: 800; line-height: 1;\n        }\n\n        .experience-badge .text {\n            font-size: 0.9rem; font-weight: 600; text-transform: uppercase; margin-top: 0.5rem;\n        }\n\n        .about-content h2 {\n            font-size: 3rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 1.5rem;\n        }\n\n        .about-content h2::after {\n            content: ''; position: absolute; bottom: 0; left: 0; width: 80px; height: 5px; background: var(--primary-color); border-radius: 5px;\n        }\n\n        \/* Animations *\/\n        @keyframes fadeInUp {\n            from { opacity: 0; transform: translateY(40px); }\n            to { opacity: 1; transform: translateY(0); }\n        }\n\n        \/* Responsive *\/\n        @media (max-width: 1024px) {\n            .hero h1 { font-size: 3.5rem; }\n            .about-grid { grid-template-columns: 1fr; gap: 4rem; }\n            .about-image { max-width: 700px; margin: 0 auto; height: 400px; }\n            .experience-badge { left: 10px; bottom: 10px; }\n            .regions-grid { grid-template-columns: 1fr; }\n        }\n\n        @media (max-width: 768px) {\n            .hero h1 { font-size: 2.8rem; }\n            .hero-buttons { flex-direction: column; }\n            .hero-buttons .btn { text-align: center; }\n            .section { padding: 5rem 0; }\n            .stats-grid { grid-template-columns: 1fr 1fr; }\n        }\n    <\/style>\n<\/head>\n<body>\n\n    <!-- 1. Hero Section -->\n    <section class=\"hero\" id=\"hero\">\n        <!-- Embedded Abstract Landscape SVG Graphic -->\n        <svg class=\"absolute-bg\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveAspectRatio=\"none\" viewBox=\"0 0 1920 1080\">\n            <defs>\n                <linearGradient id=\"hero-grad\" x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"100%\">\n                    <stop offset=\"0%\" stop-color=\"#0b5345\"\/>\n                    <stop offset=\"50%\" stop-color=\"#1e8449\"\/>\n                    <stop offset=\"100%\" stop-color=\"#d68910\"\/>\n                <\/linearGradient>\n            <\/defs>\n            <rect width=\"100%\" height=\"100%\" fill=\"url(#hero-grad)\"\/>\n            <path d=\"M0 700 Q 480 500 960 700 T 1920 700 L 1920 1080 L 0 1080 Z\" fill=\"#145a32\" opacity=\"0.4\"\/>\n            <path d=\"M0 850 Q 480 700 960 850 T 1920 850 L 1920 1080 L 0 1080 Z\" fill=\"#0f3d1e\" opacity=\"0.6\"\/>\n            <!-- Embedded Abstract Sun Graphic -->\n            <circle cx=\"1500\" cy=\"300\" r=\"100\" fill=\"#f39c12\" opacity=\"0.8\"\/>\n        <\/svg>\n        <div class=\"overlay-dark\"><\/div>\n\n        <div class=\"container hero-content\">\n            <h1>Implementing new technology for agricultural growth<\/h1>\n            <p>Welcome to Global Agro Ltd. We empower modern farming with data-driven insights and state-of-the-art agricultural solutions to maximize yield, improve livestock health, and drive sustainability.<\/p>\n            <div class=\"hero-buttons\">\n                <a href=\"#services\" class=\"btn btn-secondary\">Waste Processing<\/a>\n                <a href=\"#about\" class=\"btn btn-primary\">Feed Solutions<\/a>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 2. Features Section -->\n    <section class=\"section bg-light\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Why Choose Global Agro?<\/h2>\n            <p class=\"section-subtitle\">We bridge the gap between traditional farming and modern technological efficiency.<\/p>\n            \n            <div class=\"features-grid\">\n                <div class=\"feature-box\">\n                    <i class=\"fa-solid fa-leaf\"><\/i>\n                    <h3>Eco-Friendly<\/h3>\n                    <p>Our solutions drastically reduce waste and environmental footprint through optimized resource allocation.<\/p>\n                <\/div>\n                <div class=\"feature-box\">\n                    <i class=\"fa-solid fa-microchip\"><\/i>\n                    <h3>Smart Automation<\/h3>\n                    <p>Integrate IoT sensors and intelligent hardware to automate your daily farm operations seamlessly.<\/p>\n                <\/div>\n                <div class=\"feature-box\">\n                    <i class=\"fa-solid fa-chart-pie\"><\/i>\n                    <h3>Data Analytics<\/h3>\n                    <p>Make confident, informed decisions using real-time insights and predictive yield data mapping.<\/p>\n                <\/div>\n                <div class=\"feature-box\">\n                    <i class=\"fa-solid fa-headset\"><\/i>\n                    <h3>24\/7 Support<\/h3>\n                    <p>Our expert technical engineers are available round the clock to ensure your systems never face downtime.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 3. What We Do Section -->\n    <section class=\"section\" id=\"services\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">What We Do<\/h2>\n            <p class=\"section-subtitle\">Delivering innovative and scalable systems to enhance every aspect of your agricultural operations.<\/p>\n            \n            <div class=\"services-grid\">\n                <!-- Card 1 -->\n                <div class=\"service-card\">\n                    <div class=\"service-img\">\n                        <!-- Embedded Abstract Graphic -->\n                        <svg class=\"absolute-bg\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveAspectRatio=\"none\" viewBox=\"0 0 800 600\">\n                            <rect width=\"100%\" height=\"100%\" fill=\"#27ae60\"\/>\n                            <circle cx=\"600\" cy=\"150\" r=\"200\" fill=\"#ffffff\" opacity=\"0.1\"\/>\n                            <path d=\"M0 600 L 400 300 L 800 600 Z\" fill=\"#1e8449\" opacity=\"0.5\"\/>\n                            <path d=\"M200 600 L 400 400 L 600 600 Z\" fill=\"#145a32\" opacity=\"0.3\"\/>\n                        <\/svg>\n                        <div class=\"service-icon\"><i class=\"fa-solid fa-cow\"><\/i><\/div>\n                    <\/div>\n                    <div class=\"service-content\">\n                        <h3>Live Stock Feeding Systems<\/h3>\n                        <p>Automated, precision-driven feeding solutions designed to improve livestock health, optimize nutrition delivery, and reduce feed waste.<\/p>\n                    <\/div>\n                <\/div>\n\n                <!-- Card 2 -->\n                <div class=\"service-card\">\n                    <div class=\"service-img\">\n                        <!-- Embedded Abstract Graphic -->\n                        <svg class=\"absolute-bg\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveAspectRatio=\"none\" viewBox=\"0 0 800 600\">\n                            <rect width=\"100%\" height=\"100%\" fill=\"#f39c12\"\/>\n                            <circle cx=\"200\" cy=\"450\" r=\"250\" fill=\"#ffffff\" opacity=\"0.15\"\/>\n                            <path d=\"M-100 600 Q 400 200 900 600 Z\" fill=\"#d68910\" opacity=\"0.6\"\/>\n                            <path d=\"M300 600 Q 600 300 1000 600 Z\" fill=\"#b9770e\" opacity=\"0.4\"\/>\n                        <\/svg>\n                        <div class=\"service-icon\"><i class=\"fa-solid fa-wheat-awn\"><\/i><\/div>\n                    <\/div>\n                    <div class=\"service-content\">\n                        <h3>Crop Processing &#038; Storage<\/h3>\n                        <p>Advanced post-harvest machinery and climate-controlled storage facilities to preserve crop quality and minimize loss.<\/p>\n                    <\/div>\n                <\/div>\n\n                <!-- Card 3 -->\n                <div class=\"service-card\">\n                    <div class=\"service-img\">\n                        <!-- Embedded Abstract Graphic -->\n                        <svg class=\"absolute-bg\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveAspectRatio=\"none\" viewBox=\"0 0 800 600\">\n                            <rect width=\"100%\" height=\"100%\" fill=\"#2980b9\"\/>\n                            <path d=\"M0 500 L 200 300 L 400 400 L 600 200 L 800 450 L 800 600 L 0 600 Z\" fill=\"#ffffff\" opacity=\"0.2\"\/>\n                            <circle cx=\"600\" cy=\"200\" r=\"15\" fill=\"#f39c12\"\/>\n                            <path d=\"M0 600 L 300 400 L 500 500 L 800 350 L 800 600 Z\" fill=\"#1f618d\" opacity=\"0.5\"\/>\n                        <\/svg>\n                        <div class=\"service-icon\"><i class=\"fa-solid fa-satellite-dish\"><\/i><\/div>\n                    <\/div>\n                    <div class=\"service-content\">\n                        <h3>Weighing &#038; Data Acquisition<\/h3>\n                        <p>High-precision scales integrated with IoT sensors providing real-time analytics for smarter, data-driven agricultural decisions.<\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 4. Technology Ecosystem Section (NEW) -->\n    <section class=\"section bg-light\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Our Technology Ecosystem<\/h2>\n            <p class=\"section-subtitle\">We deploy a unified tech stack ensuring your agricultural hardware and software communicate flawlessly.<\/p>\n            \n            <div class=\"tech-grid\">\n                <div class=\"tech-item\">\n                    <div class=\"tech-icon\"><i class=\"fa-solid fa-server\"><\/i><\/div>\n                    <div>\n                        <h4>Cloud-Based Infrastructure<\/h4>\n                        <p>Store millions of data points securely, accessible from anywhere in the world.<\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"tech-item\">\n                    <div class=\"tech-icon\"><i class=\"fa-solid fa-mobile-screen\"><\/i><\/div>\n                    <div>\n                        <h4>Mobile Control Panels<\/h4>\n                        <p>Manage feed limits, silos, and livestock metrics directly from your smartphone.<\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"tech-item\">\n                    <div class=\"tech-icon\"><i class=\"fa-solid fa-network-wired\"><\/i><\/div>\n                    <div>\n                        <h4>IoT Sensor Networks<\/h4>\n                        <p>Granular soil, moisture, and temperature sensors covering every inch of your land.<\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 5. Process Section -->\n    <section class=\"section\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Our Implementation Process<\/h2>\n            <p class=\"section-subtitle\">A streamlined, stress-free path to upgrading your agricultural technology.<\/p>\n            \n            <div class=\"process-steps\">\n                <div class=\"step\">\n                    <div class=\"step-number\">1<\/div>\n                    <h3>Consultation<\/h3>\n                    <p>We analyze your farm&#8217;s unique challenges, layout, and goals to propose the best custom tech solutions.<\/p>\n                <\/div>\n                <div class=\"step\">\n                    <div class=\"step-number\">2<\/div>\n                    <h3>System Design<\/h3>\n                    <p>Our engineers draft a comprehensive blueprint for machinery placement and software integration.<\/p>\n                <\/div>\n                <div class=\"step\">\n                    <div class=\"step-number\">3<\/div>\n                    <h3>Installation<\/h3>\n                    <p>Expert technicians deploy equipment with minimal disruption to your daily agricultural operations.<\/p>\n                <\/div>\n                <div class=\"step\">\n                    <div class=\"step-number\">4<\/div>\n                    <h3>Monitoring<\/h3>\n                    <p>We provide training, ongoing maintenance, and real-time remote monitoring of all your new systems.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 6. Global Reach (NEW) -->\n    <section class=\"section global-section\">\n        <!-- Embedded Abstract Map Graphic -->\n        <svg class=\"absolute-bg\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveAspectRatio=\"none\" viewBox=\"0 0 1920 1080\">\n            <rect width=\"100%\" height=\"100%\" fill=\"#0b5345\"\/>\n            <g fill=\"#ffffff\" opacity=\"0.05\">\n                <circle cx=\"400\" cy=\"400\" r=\"100\"\/>\n                <circle cx=\"900\" cy=\"300\" r=\"150\"\/>\n                <circle cx=\"1400\" cy=\"500\" r=\"120\"\/>\n                <circle cx=\"800\" cy=\"700\" r=\"80\"\/>\n            <\/g>\n        <\/svg>\n\n        <div class=\"container global-content\">\n            <h2 class=\"section-title\" style=\"color: #fff;\">Global Reach, Local Impact<\/h2>\n            <p class=\"section-subtitle\" style=\"color: #d5dbdb;\">Delivering world-class agricultural technology across continents.<\/p>\n            \n            <div class=\"regions-grid\">\n                <div class=\"region-card\">\n                    <i class=\"fa-solid fa-earth-americas\" style=\"font-size: 2.5rem; color: #f39c12; margin-bottom: 1rem;\"><\/i>\n                    <h3>North America<\/h3>\n                    <p style=\"font-size: 0.95rem; color: #d5dbdb;\">Empowering large scale farming across the midwest with advanced silo tech.<\/p>\n                <\/div>\n                <div class=\"region-card\">\n                    <i class=\"fa-solid fa-earth-europe\" style=\"font-size: 2.5rem; color: #f39c12; margin-bottom: 1rem;\"><\/i>\n                    <h3>Europe<\/h3>\n                    <p style=\"font-size: 0.95rem; color: #d5dbdb;\">Providing strict eco-compliant processing systems for sustainable cooperatives.<\/p>\n                <\/div>\n                <div class=\"region-card\">\n                    <i class=\"fa-solid fa-earth-asia\" style=\"font-size: 2.5rem; color: #f39c12; margin-bottom: 1rem;\"><\/i>\n                    <h3>Asia-Pacific<\/h3>\n                    <p style=\"font-size: 0.95rem; color: #d5dbdb;\">Scaling high-yield livestock feeding automation for rapid regional growth.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 7. Statistics Section -->\n    <section class=\"stats\">\n        <!-- Embedded Abstract Statistics Graphic -->\n        <svg class=\"absolute-bg\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveAspectRatio=\"none\" viewBox=\"0 0 1920 400\">\n            <rect width=\"100%\" height=\"100%\" fill=\"#1e8449\"\/>\n            <circle cx=\"200\" cy=\"100\" r=\"500\" fill=\"#ffffff\" opacity=\"0.05\"\/>\n            <circle cx=\"1700\" cy=\"300\" r=\"400\" fill=\"#f39c12\" opacity=\"0.05\"\/>\n        <\/svg>\n        <div class=\"container stats-grid\">\n            <div class=\"stat-item\">\n                <h2>850+<\/h2>\n                <p>Farms Upgraded<\/p>\n            <\/div>\n            <div class=\"stat-item\">\n                <h2>40%<\/h2>\n                <p>Average Yield Increase<\/p>\n            <\/div>\n            <div class=\"stat-item\">\n                <h2>12M+<\/h2>\n                <p>Tons of Feed Processed<\/p>\n            <\/div>\n            <div class=\"stat-item\">\n                <h2>100%<\/h2>\n                <p>Client Satisfaction<\/p>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 8. Testimonials Section -->\n    <section class=\"section bg-light\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">What Our Clients Say<\/h2>\n            <p class=\"section-subtitle\">Hear from the farmers and business owners who have transformed their operations.<\/p>\n            \n            <div class=\"testimonials-grid\">\n                <div class=\"testimonial-card\">\n                    <p>&#8220;Global Agro&#8217;s livestock feeding system completely changed how we manage our dairy farm. Milk production is up 20% and feed waste is almost zero.&#8221;<\/p>\n                    <div class=\"testimonial-author\">\n                        <div class=\"avatar-icon\"><i class=\"fa-solid fa-user-tie\"><\/i><\/div>\n                        <div class=\"author-info\">\n                            <h4>James Robertson<\/h4>\n                            <span>Owner, Robertson Dairy<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"testimonial-card\">\n                    <p>&#8220;The climate-controlled storage and IoT sensors allow us to monitor our wheat silos from a smartphone. We haven&#8217;t lost a single batch to moisture since.&#8221;<\/p>\n                    <div class=\"testimonial-author\">\n                        <div class=\"avatar-icon\"><i class=\"fa-solid fa-user-tie\"><\/i><\/div>\n                        <div class=\"author-info\">\n                            <h4>Sarah Jenkins<\/h4>\n                            <span>Operations Manager, Valley Farms<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"testimonial-card\">\n                    <p>&#8220;Professional, knowledgeable, and always available for support. Their data acquisition tools helped us identify exactly which crops were underperforming.&#8221;<\/p>\n                    <div class=\"testimonial-author\">\n                        <div class=\"avatar-icon\"><i class=\"fa-solid fa-user-tie\"><\/i><\/div>\n                        <div class=\"author-info\">\n                            <h4>Michael Chang<\/h4>\n                            <span>Director, Green Cooperative<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 9. FAQ Section (NEW) -->\n    <section class=\"section\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Frequently Asked Questions<\/h2>\n            <p class=\"section-subtitle\">Quick answers to common inquiries about our systems.<\/p>\n            \n            <div class=\"faq-container\">\n                <div class=\"faq-item\">\n                    <div class=\"faq-question\">How long does system implementation typically take? <i class=\"fa-solid fa-chevron-down\"><\/i><\/div>\n                    <div class=\"faq-answer\">\n                        <p>Depending on the scale of your farm and the specific systems chosen, implementation usually takes between 2 to 6 weeks from initial consultation to final testing.<\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"faq-item\">\n                    <div class=\"faq-question\">Are your systems compatible with existing farm hardware? <i class=\"fa-solid fa-chevron-down\"><\/i><\/div>\n                    <div class=\"faq-answer\">\n                        <p>Yes. Our data acquisition modules and IoT sensors are designed to retro-fit seamlessly into 90% of traditional agricultural machinery and silos.<\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"faq-item\">\n                    <div class=\"faq-question\">Do you provide training for the farm staff? <i class=\"fa-solid fa-chevron-down\"><\/i><\/div>\n                    <div class=\"faq-answer\">\n                        <p>Absolutely. Every installation is followed by a comprehensive multi-day training workshop for your operators, ensuring your team is fully confident.<\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"faq-item\">\n                    <div class=\"faq-question\">What happens if a sensor or machine fails? <i class=\"fa-solid fa-chevron-down\"><\/i><\/div>\n                    <div class=\"faq-answer\">\n                        <p>Our remote monitoring tools instantly alert our 24\/7 technical team. In most cases, software issues can be resolved remotely. If hardware fails, a local technician is dispatched immediately.<\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- 10. About Us Section (NO FOOTER BELOW THIS) -->\n    <section class=\"section about\" id=\"about\">\n        <div class=\"container about-grid\">\n            <div class=\"about-image\">\n                <!-- Embedded Abstract Greenhouse SVG Graphic -->\n                <svg class=\"absolute-bg\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveAspectRatio=\"none\" viewBox=\"0 0 1000 800\">\n                    <rect width=\"100%\" height=\"100%\" fill=\"#ecf0f1\"\/>\n                    <path d=\"M200 800 L200 400 Q500 100 800 400 L800 800 Z\" fill=\"#27ae60\" opacity=\"0.2\"\/>\n                    <path d=\"M300 800 L300 450 Q500 200 700 450 L700 800 Z\" fill=\"#27ae60\" opacity=\"0.4\"\/>\n                    <rect x=\"450\" y=\"500\" width=\"100\" height=\"300\" fill=\"#ffffff\" opacity=\"0.8\"\/>\n                    <circle cx=\"200\" cy=\"200\" r=\"80\" fill=\"#f39c12\" opacity=\"0.5\"\/>\n                <\/svg>\n                \n                <div class=\"experience-badge\">\n                    <span class=\"years\">25+<\/span>\n                    <span class=\"text\">Years<br>Experience<\/span>\n                <\/div>\n            <\/div>\n            \n            <div class=\"about-content\">\n                <h2>Extensive Industry Experience<\/h2>\n                <p>At Global Agro Ltd., we bring decades of hands-on experience in agricultural engineering and technology. We understand the unique challenges faced by modern farmers, cooperatives, and large-scale agribusinesses.<\/p>\n                <p>Our commitment to quality solutions drives us to constantly innovate. We partner with global industry leaders to design, manufacture, and implement advanced systems that guarantee reliability, operational efficiency, and an exceptional return on investment.<\/p>\n                \n                <div class=\"about-features\" style=\"margin-top:2rem;\">\n                    <div style=\"display: flex; align-items: flex-start; margin-bottom: 1.5rem;\">\n                        <i class=\"fa-solid fa-gears\" style=\"font-size: 2rem; color: var(--primary-color); margin-right: 1.5rem; margin-top:0.2rem;\"><\/i>\n                        <div>\n                            <h4 style=\"font-size: 1.2rem; margin-bottom: 0.5rem;\">State-of-the-Art Technology<\/h4>\n                            <p style=\"color: var(--text-light); font-size: 1rem;\">We leverage the latest in agricultural robotics, automation, and predictive data analytics to bring your daily operations into the future.<\/p>\n                        <\/div>\n                    <\/div>\n                    <div style=\"display: flex; align-items: flex-start;\">\n                        <i class=\"fa-solid fa-earth-americas\" style=\"font-size: 2rem; color: var(--primary-color); margin-right: 1.5rem; margin-top:0.2rem;\"><\/i>\n                        <div>\n                            <h4 style=\"font-size: 1.2rem; margin-bottom: 0.5rem;\">Global Standards, Local Support<\/h4>\n                            <p style=\"color: var(--text-light); font-size: 1rem;\">Our solutions meet the highest international quality standards, backed by a dedicated local support team that understands your terrain.<\/p>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Inline JavaScript -->\n    <script>\n        \/\/ Smooth scrolling\n        document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n            anchor.addEventListener('click', function (e) {\n                e.preventDefault();\n                const targetId = this.getAttribute('href');\n                if(targetId !== \"#\") {\n                    const targetElement = document.querySelector(targetId);\n                    if(targetElement) {\n                        targetElement.scrollIntoView({ behavior: 'smooth' });\n                    }\n                }\n            });\n        });\n\n        \/\/ FAQ Toggle functionality\n        document.querySelectorAll('.faq-question').forEach(question => {\n            question.addEventListener('click', () => {\n                const item = question.parentElement;\n                \n                \/\/ Close others\n                document.querySelectorAll('.faq-item').forEach(otherItem => {\n                    if (otherItem !== item) {\n                        otherItem.classList.remove('active');\n                    }\n                });\n                \n                \/\/ Toggle current\n                item.classList.toggle('active');\n            });\n        });\n    <\/script>\n<\/body>\n<\/html>\n\n","protected":false},"excerpt":{"rendered":"<p>Global Agro Ltd. &#8211; Advanced Agricultural Solutions Implementing new technology for agricultural growth Welcome to Global Agro Ltd. We empower [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"plain-container","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"enabled","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-7","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/globalagro-ltd.com\/index.php?rest_route=\/wp\/v2\/pages\/7","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/globalagro-ltd.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/globalagro-ltd.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/globalagro-ltd.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/globalagro-ltd.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7"}],"version-history":[{"count":4,"href":"https:\/\/globalagro-ltd.com\/index.php?rest_route=\/wp\/v2\/pages\/7\/revisions"}],"predecessor-version":[{"id":26,"href":"https:\/\/globalagro-ltd.com\/index.php?rest_route=\/wp\/v2\/pages\/7\/revisions\/26"}],"wp:attachment":[{"href":"https:\/\/globalagro-ltd.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}