File size: 20,950 Bytes
1f0c3d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | AgriGrow Nation</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f0fdf4',
100: '#dcfce7',
200: '#bbf7d0',
300: '#86efac',
400: '#4ade80',
500: '#22c55e',
600: '#16a34a',
700: '#15803d',
800: '#166534',
900: '#14532d',
},
secondary: {
50: '#fefce8',
100: '#fef9c3',
200: '#fef08a',
300: '#fde047',
400: '#facc15',
500: '#eab308',
600: '#ca8a04',
700: '#a16207',
800: '#854d0e',
900: '#713f12',
}
}
}
}
}
</script>
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap">
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(250, 204, 21, 0.05) 100%);
}
.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="font-['Poppins'] bg-white text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<img class="h-8 w-auto" src="http://static.photos/agriculture/200x200/5" alt="AgriGrow Logo">
<span class="ml-2 text-xl font-bold text-primary-600">AgriGrow Nation</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="index.html" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Home</a>
<a href="programs.html" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Programs</a>
<a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Resources</a>
<a href="about.html" class="text-primary-600 border-b-2 border-primary-500 px-3 py-2 text-sm font-medium">About</a>
<a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="flex items-center">
<a href="#" class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-2 rounded-md text-sm font-medium">Farmer Portal</a>
<button class="md:hidden ml-4">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="text-center">
<h1 class="text-4xl md:text-5xl font-bold leading-tight text-gray-900 mb-4">
About <span class="text-primary-600">AgriGrow Nation</span>
</h1>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Empowering farmers and revolutionizing agriculture through innovation, technology, and sustainable practices.
</p>
</div>
</div>
</section>
<!-- Our Story Section -->
<section class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:items-center md:space-x-12">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Our Story</h2>
<p class="text-gray-600 mb-4">
Founded in 2015, AgriGrow Nation began as a small initiative to help local farmers adopt sustainable practices. What started as a pilot project in 20 villages has now grown into a nationwide movement supporting thousands of farmers across the country.
</p>
<p class="text-gray-600 mb-4">
Our journey has been fueled by the belief that sustainable agriculture is not just possible, but essential for our future. We've worked tirelessly to bridge the gap between traditional farming wisdom and modern technological solutions.
</p>
<p class="text-gray-600">
Today, we stand as a leading agricultural support organization, recognized for our innovative programs and farmer-centric approach.
</p>
</div>
<div class="md:w-1/2">
<img src="http://static.photos/agriculture/640x360/8" alt="Farmers meeting" class="rounded-lg shadow-lg w-full">
</div>
</div>
</div>
</section>
<!-- Mission & Vision -->
<section class="bg-gray-50 py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div class="bg-white p-8 rounded-lg shadow-sm">
<div class="flex items-center justify-center w-16 h-16 bg-primary-100 text-primary-600 rounded-full mb-6">
<i data-feather="target" class="w-8 h-8"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Our Mission</h3>
<p class="text-gray-600">
To empower farmers with knowledge, technology, and resources that increase productivity, ensure sustainability, and improve livelihoods while preserving our environment for future generations.
</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-sm">
<div class="flex items-center justify-center w-16 h-16 bg-secondary-100 text-secondary-600 rounded-full mb-6">
<i data-feather="eye" class="w-8 h-8"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Our Vision</h3>
<p class="text-gray-600">
A future where every farmer thrives through sustainable agriculture, where communities are food-secure, and where farming is recognized as a noble, profitable, and environmentally-responsible profession.
</p>
</div>
</div>
</div>
</section>
<!-- Core Values -->
<section class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Core Values</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
The principles that guide every decision we make and every program we implement.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center justify-center w-12 h-12 bg-primary-100 text-primary-600 rounded-full mb-4">
<i data-feather="users" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">Farmer First</h3>
<p class="text-gray-600">
Farmers are at the heart of everything we do. We listen, understand, and respond to their needs with tailored solutions.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center justify-center w-12 h-12 bg-primary-100 text-primary-600 rounded-full mb-4">
<i data-feather="shield" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">Sustainability</h3>
<p class="text-gray-600">
We champion practices that protect our environment while ensuring long-term agricultural productivity.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center justify-center w-12 h-12 bg-primary-100 text-primary-600 rounded-full mb-4">
<i data-feather="zap" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">Innovation</h3>
<p class="text-gray-600">
We embrace cutting-edge technologies and creative approaches to solve age-old farming challenges.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center justify-center w-12 h-12 bg-primary-100 text-primary-600 rounded-full mb-4">
<i data-feather="heart" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">Community</h3>
<p class="text-gray-600">
We believe in the power of collective action and shared knowledge to drive meaningful change.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center justify-center w-12 h-12 bg-primary-100 text-primary-600 rounded-full mb-4">
<i data-feather="check-circle" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">Integrity</h3>
<p class="text-gray-600">
We operate with transparency, honesty, and accountability in all our interactions and initiatives.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center justify-center w-12 h-12 bg-primary-100 text-primary-600 rounded-full mb-4">
<i data-feather="trending-up" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-3">Impact</h3>
<p class="text-gray-600">
We measure our success by the tangible improvements in farmers' lives and the health of our ecosystems.
</p>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="bg-gray-50 py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Meet Our Leadership</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
The dedicated individuals driving our mission forward.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="team-card bg-white p-6 rounded-lg shadow-sm transition-all duration-300 ease-in-out text-center">
<img src="http://static.photos/people/200x200/4" alt="Team Member" class="w-32 h-32 rounded-full mx-auto mb-4 object-cover">
<h3 class="text-xl font-semibold text-gray-900 mb-1">Dr. Priya Patel</h3>
<p class="text-primary-600 font-medium mb-3">Founder & CEO</p>
<p class="text-gray-600">
Agricultural economist with 20+ years experience in sustainable farming initiatives.
</p>
</div>
<div class="team-card bg-white p-6 rounded-lg shadow-sm transition-all duration-300 ease-in-out text-center">
<img src="http://static.photos/people/200x200/5" alt="Team Member" class="w-32 h-32 rounded-full mx-auto mb-4 object-cover">
<h3 class="text-xl font-semibold text-gray-900 mb-1">Rajesh Kumar</h3>
<p class="text-primary-600 font-medium mb-3">Director of Programs</p>
<p class="text-gray-600">
Former farmer turned agricultural technologist, specializing in precision agriculture.
</p>
</div>
<div class="team-card bg-white p-6 rounded-lg shadow-sm transition-all duration-300 ease-in-out text-center">
<img src="http://static.photos/people/200x200/6" alt="Team Member" class="w-32 h-32 rounded-full mx-auto mb-4 object-cover">
<h3 class="text-xl font-semibold text-gray-900 mb-1">Ananya Sharma</h3>
<p class="text-primary-600 font-medium mb-3">Head of Research</p>
<p class="text-gray-600">
Soil scientist passionate about organic farming and regenerative agriculture.
</p>
</div>
</div>
</div>
</section>
<!-- Partners Section -->
<section class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Partners</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
Collaborating with leading organizations to maximize our impact.
</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center">
<div class="flex justify-center">
<img src="http://static.photos/technology/200x200/1" alt="Partner Logo" class="h-16 object-contain grayscale hover:grayscale-0 transition-all">
</div>
<div class="flex justify-center">
<img src="http://static.photos/technology/200x200/2" alt="Partner Logo" class="h-16 object-contain grayscale hover:grayscale-0 transition-all">
</div>
<div class="flex justify-center">
<img src="http://static.photos/technology/200x200/3" alt="Partner Logo" class="h-16 object-contain grayscale hover:grayscale-0 transition-all">
</div>
<div class="flex justify-center">
<img src="http://static.photos/technology/200x200/4" alt="Partner Logo" class="h-16 object-contain grayscale hover:grayscale-0 transition-all">
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-primary-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Join Our Movement</h2>
<p class="text-lg text-primary-100 max-w-2xl mx-auto mb-8">
Whether you're a farmer, researcher, or simply passionate about sustainable agriculture, there's a place for you in our community.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-3 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white text-primary-600 hover:bg-gray-100 px-8 py-3 rounded-md text-lg font-medium">
Get Involved
</a>
<a href="#" class="border border-white text-white hover:bg-primary-700 px-8 py-3 rounded-md text-lg font-medium">
Contact Us
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<h3 class="text-lg font-semibold mb-4">AgriGrow Nation</h3>
<p class="text-gray-400">
Empowering farmers with innovative agricultural solutions for a sustainable future.
</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="facebook" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="instagram" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="youtube" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="index.html" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="programs.html" class="text-gray-400 hover:text-white">Programs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Resources</a></li>
<li><a href="about.html" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Programs</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Water Conservation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Organic Farming</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Smart Technology</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Financial Support</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Contact Us</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i data-feather="map-pin" class="w-5 h-5 mr-2 mt-1 flex-shrink-0"></i>
<span>Ministry of Agriculture, New Delhi, India</span>
</li>
<li class="flex items-center">
<i data-feather="phone" class="w-5 h-5 mr-2"></i>
<span>+91 1800 123 4567</span>
</li>
<li class="flex items-center">
<i data-feather="mail" class="w-5 h-5 mr-2"></i>
<span>support@agrigrow.gov.in</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 AgriGrow Nation. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Sitemap</a>
</div>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html> |