main page par company ka name hona chahiye <!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>RE Mahaveer Green Energy and Infra Private Limited | Solar Solutions for Bihar</title>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">

<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap" rel="stylesheet">

<style>

:root {

--primary: #1a365d;

--secondary: #f59e0b;

--accent: #10b981;

--light: #f8fafc;

--dark: #0f172a;

--gray: #64748b;

}

* {

margin: 0;

padding: 0;

box-sizing: border-box;

}

body {

font-family: 'Poppins', sans-serif;

line-height: 1.6;

color: var(--dark);

background-color: var(--light);

overflow-x: hidden;

}

h1, h2, h3, h4 {

font-family: 'Montserrat', sans-serif;

font-weight: 700;

line-height: 1.2;

margin-bottom: 1rem;

}

.container {

width: 100%;

max-width: 1200px;

margin: 0 auto;

padding: 0 20px;

}

.btn {

display: inline-block;

padding: 12px 30px;

background-color: var(--secondary);

color: var(--dark);

border: none;

border-radius: 4px;

font-weight: 600;

text-decoration: none;

cursor: pointer;

transition: all 0.3s ease;

text-align: center;

}

.btn:hover {

background-color: #e69007;

transform: translateY(-2px);

box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);

}

.btn-primary {

background-color: var(--primary);

color: white;

}

.btn-primary:hover {

background-color: #0f2547;

}

section {

padding: 80px 0;

}

.section-title {

text-align: center;

margin-bottom: 50px;

}

.section-title h2 {

font-size: 2.5rem;

color: var(--primary);

position: relative;

display: inline-block;

}

.section-title h2::after {

content: '';

position: absolute;

bottom: -10px;

left: 50%;

transform: translateX(-50%);

width: 80px;

height: 4px;

background-color: var(--secondary);

}

/* Header & Navigation */

header {

background-color: var(--primary);

padding: 15px 0;

position: fixed;

width: 100%;

top: 0;

z-index: 1000;

box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.header-container {

display: flex;

justify-content: space-between;

align-items: center;

}

.logo {

display: flex;

align-items: center;

}

.logo h1 {

font-size: 1.5rem;

color: white;

margin-bottom: 0;

}

.logo span {

color: var(--secondary);

}

nav ul {

display: flex;

list-style: none;

}

nav ul li {

margin-left: 30px;

}

nav ul li a {

color: white;

text-decoration: none;

font-weight: 500;

transition: color 0.3s ease;

}

nav ul li a:hover {

color: var(--secondary);

}

.mobile-menu {

display: none;

color: white;

font-size: 1.5rem;

cursor: pointer;

}

/* Hero Section */

.hero {

background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');

background-size: cover;

background-position: center;

color: white;

padding: 180px 0 100px;

text-align: center;

}

.hero h1 {

font-size: 3.5rem;

margin-bottom: 20px;

color: white;

}

.hero p {

font-size: 1.2rem;

max-width: 700px;

margin: 0 auto 30px;

color: rgba(255, 255, 255, 0.9);

}

.hero-buttons {

display: flex;

justify-content: center;

gap: 20px;

margin-top: 30px;

}

/* Trust Badges */

.trust-badges {

background-color: white;

padding: 40px 0;

box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

.badges-container {

display: flex;

justify-content: space-around;

align-items: center;

flex-wrap: wrap;

}

.badge {

display: flex;

flex-direction: column;

align-items: center;

margin: 10px 20px;

}

.badge i {

font-size: 2.5rem;

color: var(--primary);

margin-bottom: 10px;

}

.badge span {

font-weight: 600;

color: var(--dark);

text-align: center;

}

/* Services Section */

.services {

background-color: #f1f5f9;

}

.services-grid {

display: grid;

grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

gap: 30px;

}

.service-card {

background-color: white;

border-radius: 8px;

overflow: hidden;

box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.service-card:hover {

transform: translateY(-10px);

box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

}

.service-icon {

height: 200px;

background-color: var(--primary);

display: flex;

align-items: center;

justify-content: center;

color: white;

font-size: 4rem;

}

.service-content {

padding: 25px;

}

.service-content h3 {

font-size: 1.5rem;

color: var(--primary);

}

.service-content p {

color: var(--gray);

margin-bottom: 20px;

}

/* Subsidy Section */

.subsidy {

background: linear-gradient(135deg, var(--primary) 0%, #2d4a7c 100%);

color: white;

text-align: center;

}

.subsidy h2 {

color: white;

}

.subsidy p {

max-width: 800px;

margin: 0 auto 30px;

font-size: 1.1rem;

}

/* Projects Section */

.projects-grid {

display: grid;

grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

gap: 30px;

}

.project-card {

border-radius: 8px;

overflow: hidden;

box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

position: relative;

}

.project-image {

height: 250px;

background-color: var(--gray);

background-size: cover;

background-position: center;

}

.project-overlay {

position: absolute;

bottom: 0;

left: 0;

right: 0;

background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));

color: white;

padding: 20px;

transform: translateY(100%);

transition: transform 0.3s ease;

}

.project-card:hover .project-overlay {

transform: translateY(0);

}

.project-overlay h3 {

margin-bottom: 10px;

font-size: 1.3rem;

}

/* Team Section */

.team {

background-color: #f1f5f9;

}

.team-container {

display: grid;

grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

gap: 40px;

max-width: 1000px;

margin: 0 auto;

}

.director-card {

background-color: white;

border-radius: 8px;

overflow: hidden;

box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

transition: transform 0.3s ease;

}

.director-card:hover {

transform: translateY(-10px);

}

.director-header {

background-color: var(--primary);

color: white;

padding: 30px;

text-align: center;

}

.director-header h3 {

color: white;

font-size: 1.8rem;

margin-bottom: 5px;

}

.director-header p {

color: rgba(255, 255, 255, 0.8);

font-size: 1.1rem;

}

.director-details {

padding: 30px;

text-align: center;

}

.detail-row {

margin-bottom: 15px;

padding-bottom: 15px;

}

.detail-label {

font-weight: 600;

color: var(--primary);

display: block;

margin-bottom: 5px;

}

.detail-value {

color: var(--gray);

}

/* Corporate Address Section */

.corporate-address {

background-color: var(--primary);

color: white;

text-align: center;

padding: 60px 0;

}

.address-container {

max-width: 800px;

margin: 0 auto;

}

.address-container h2 {

color: white;

margin-bottom: 30px;

}

.address-box {

background-color: rgba(255, 255, 255, 0.1);

padding: 30px;

border-radius: 8px;

margin-bottom: 20px;

}

.address-box h3 {

color: var(--secondary);

margin-bottom: 15px;

}

.founding-year {

font-size: 1.2rem;

margin-top: 20px;

color: var(--secondary);

font-weight: 600;

}

/* Calculator Section */

.calculator {

background-color: #f1f5f9;

}

.calculator-container {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 50px;

align-items: center;

}

.calculator-form {

background-color: white;

padding: 30px;

border-radius: 8px;

box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

.form-group {

margin-bottom: 20px;

}

.form-group label {

display: block;

margin-bottom: 8px;

font-weight: 500;

}

.form-group input, .form-group select {

width: 100%;

padding: 12px 15px;

border: 1px solid #ddd;

border-radius: 4px;

font-family: 'Poppins', sans-serif;

}

.calculator-result {

background-color: var(--primary);

color: white;

padding: 30px;

border-radius: 8px;

text-align: center;

}

.result-value {

font-size: 3rem;

font-weight: 700;

color: var(--secondary);

margin: 20px 0;

}

/* Testimonials */

.testimonials-container {

max-width: 800px;

margin: 0 auto;

position: relative;

}

.testimonial {

background-color: white;

padding: 30px;

border-radius: 8px;

box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

margin: 0 20px;

}

.testimonial-content {

font-style: italic;

margin-bottom: 20px;

color: var(--gray);

}

.testimonial-author {

display: flex;

align-items: center;

}

.author-avatar {

width: 60px;

height: 60px;

border-radius: 50%;

background-color: var(--gray);

margin-right: 15px;

}

.author-info h4 {

margin-bottom: 5px;

font-size: 1.1rem;

}

.author-info p {

color: var(--gray);

font-size: 0.9rem;

}

/* Blog Section */

.blog {

background-color: #f1f5f9;

}

.blog-grid {

display: grid;

grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

gap: 30px;

}

.blog-card {

background-color: white;

border-radius: 8px;

overflow: hidden;

box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

.blog-image {

height: 200px;

background-color: var(--gray);

background-size: cover;

background-position: center;

}

.blog-content {

padding: 25px;

}

.blog-content h3 {

font-size: 1.3rem;

margin-bottom: 15px;

}

.blog-content p {

color: var(--gray);

margin-bottom: 15px;

}

.blog-meta {

display: flex;

justify-content: space-between;

color: var(--gray);

font-size: 0.9rem;

}

/* CTA Section */

.cta {

background: linear-gradient(135deg, var(--secondary) 0%, #fbbf24 100%);

color: var(--dark);

text-align: center;

padding: 80px 0;

}

.cta h2 {

color: var(--dark);

font-size: 2.5rem;

margin-bottom: 20px;

}

.cta p {

max-width: 700px;

margin: 0 auto 30px;

font-size: 1.1rem;

}

/* Footer */

footer {

background-color: var(--dark);

color: white;

padding: 60px 0 20px;

}

.footer-container {

display: grid;

grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

gap: 40px;

margin-bottom: 40px;

}

.footer-column h3 {

color: white;

font-size: 1.3rem;

margin-bottom: 25px;

position: relative;

}

.footer-column h3::after {

content: '';

position: absolute;

bottom: -10px;

left: 0;

width: 40px;

height: 3px;

background-color: var(--secondary);

}

.footer-column p {

margin-bottom: 20px;

color: rgba(255, 255, 255, 0.7);

}

.footer-links {

list-style: none;

}

.footer-links li {

margin-bottom: 12px;

}

.footer-links a {

color: rgba(255, 255, 255, 0.7);

text-decoration: none;

transition: color 0.3s ease;

}

.footer-links a:hover {

color: var(--secondary);

}

.social-links {

display: flex;

gap: 15px;

margin-top: 20px;

}

.social-links a {

display: flex;

align-items: center;

justify-content: center;

width: 40px;

height: 40px;

background-color: rgba(255, 255, 255, 0.1);

border-radius: 50%;

color: white;

transition: all 0.3s ease;

}

.social-links a:hover {

background-color: var(--secondary);

transform: translateY(-3px);

}

.footer-bottom {

text-align: center;

padding-top: 20px;

border-top: 1px solid rgba(255, 255, 255, 0.1);

color: rgba(255, 255, 255, 0.5);

font-size: 0.9rem;

}

/* WhatsApp Button */

.whatsapp-float {

position: fixed;

bottom: 30px;

right: 30px;

width: 60px;

height: 60px;

background-color: #25D366;

color: white;

border-radius: 50%;

display: flex;

align-items: center;

justify-content: center;

font-size: 1.8rem;

box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

z-index: 100;

transition: all 0.3s ease;

}

.whatsapp-float:hover {

transform: scale(1.1);

}

/* Responsive Styles */

@media (max-width: 992px) {

.calculator-container {

grid-template-columns: 1fr;

}

.hero h1 {

font-size: 2.8rem;

}

}

@media (max-width: 768px) {

nav ul {

display: none;

}

.mobile-menu {

display: block;

}

.hero h1 {

font-size: 2.3rem;

}

.hero-buttons {

flex-direction: column;

gap: 15px;

}

.btn {

width: 100%;

max-width: 300px;

}

.section-title h2 {

font-size: 2rem;

}

}

@media (max-width: 576px) {

section {

padding: 60px 0;

}

.hero {

padding: 150px 0 80px;

}

.hero h1 {

font-size: 2rem;

}

.badges-container {

flex-direction: column;

gap: 20px;

}

.team-container {

grid-template-columns: 1fr;

}

}

</style>

</head>

<body>

<!-- Header -->

<header>

<div class="container header-container">

<div class="logo">

<h1>RE Mahaveer Green Energy <span>and Infra Private Limited</span></h1>

</div>

<nav>

<ul>

<li><a href="#home">Home</a></li>

<li><a href="#services">Services</a></li>

<li><a href="#projects">Projects</a></li>

<li><a href="#team">Our Team</a></li>

<li><a href="#subsidies">Subsidies</a></li>

<li><a href="#calculator">Calculator</a></li>

<li><a href="#contact">Contact</a></li>

</ul>

</nav>

<div class="mobile-menu">

<i class="fas fa-bars"></i>

</div>

</div>

</header>


<!-- Hero Section -->

<section class="hero" id="home">

<div class="container">

<h1>Powering Bihar's Future with Reliable Solar Energy</h1>

<p>From Rooftop Solutions to Agricultural Pumps - Your Trusted MNRE & BREDA Empanelled Partner</p>

<div class="hero-buttons">

<a href="#contact" class="btn">Get Free Consultation</a>

<a href="#projects" class="btn btn-primary">View Our Projects</a>

</div>

</div>

</section>


<!-- Trust Badges -->

<section class="trust-badges">

<div class="container badges-container">

<div class="badge">

<i class="fas fa-award"></i>

<span>MNRE Empanelled</span>

</div>

<div class="badge">

<i class="fas fa-certificate"></i>

<span>BREDA Approved</span>

</div>

<div class="badge">

<i class="fas fa-solar-panel"></i>

<span>500+ Installations</span>

</div>

<div class="badge">

<i class="fas fa-users"></i>

<span>1,000+ Happy Customers</span>

</div>

</div>

</section>


<!-- Services Section -->

<section class="services" id="services">

<div class="container">

<div class="section-title">

<h2>Our Comprehensive Solar Solutions</h2>

</div>

<div class="services-grid">

<div class="service-card">

<div class="service-icon">

<i class="fas fa-house"></i>

</div>

<div class="service-content">

<h3>Rooftop Solar Projects</h3>

<p>Residential, commercial, and industrial rooftop solar solutions tailored to your energy needs.</p>

<a href="#" class="btn btn-primary">Learn More</a>

</div>

</div>

<div class="service-card">

<div class="service-icon">

<i class="fas fa-tint"></i>

</div>

<div class="service-content">

<h3>Solar Water Pumps</h3>

<p>Efficient solar-powered water pumping systems for agriculture and drinking water needs.</p>

<a href="#" class="btn btn-primary">Learn More</a>

</div>

</div>

<div class="service-card">

<div class="service-icon">

<i class="fas fa-lightbulb"></i>

</div>

<div class="service-content">

<h3>Solar Street Lights</h3>

<p>High-quality solar street lighting solutions for municipalities and communities.</p>

<a href="#" class="btn btn-primary">Learn More</a>

</div>

</div>

<div class="service-card">

<div class="service-icon">

<i class="fas fa-tools"></i>

</div>

<div class="service-content">

<h3>Solar EPC & Maintenance</h3>

<p>End-to-end engineering, procurement, construction, and maintenance services.</p>

<a href="#" class="btn btn-primary">Learn More</a>

</div>

</div>

<div class="service-card">

<div class="service-icon">

<i class="fas fa-shipping-fast"></i>

</div>

<div class="service-content">

<h3>Product Trading & Supply</h3>

<p>High-quality solar panels, inverters, batteries, and other solar equipment.</p>

<a href="#" class="btn btn-primary">Learn More</a>

</div>

</div>

<div class="service-card">

<div class="service-icon">

<i class="fas fa-chalkboard-teacher"></i>

</div>

<div class="service-content">

<h3>Energy Consultancy & Training</h3>

<p>Expert consultation and training programs for solar energy implementation.</p>

<a href="#" class="btn btn-primary">Learn More</a>

</div>

</div>

</div>

</div>

</section>


<!-- Subsidy Section -->

<section class="subsidy" id="subsidies">

<div class="container">

<div class="section-title">

<h2>Maximize Your Savings with Government Subsidies</h2>

</div>

<p>We handle the entire MNRE & BREDA application process for you, ensuring you get the maximum subsidy benefits for your solar projects.</p>

<a href="#contact" class="btn">Check Your Eligibility</a>

</div>

</section>


<!-- Projects Section -->

<section class="projects" id="projects">

<div class="container">

<div class="section-title">

<h2>Our Work in Action</h2>

</div>

<div class="projects-grid">

<div class="project-card">

<div class="project-image" style="background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');"></div>

<div class="project-overlay">

<h3>Residential Rooftop Installation</h3>

<p>Patna, Bihar</p>

</div>

</div>

<div class="project-card">

<div class="project-image" style="background-image: url('https://images.unsplash.com/photo-1613665813446-82a78c468a1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');"></div>

<div class="project-overlay">

<h3>Solar Farm Project</h3>

<p>Gaya, Bihar</p>

</div>

</div>

<div class="project-card">

<div class="project-image" style="background-image: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');"></div>

<div class="project-overlay">

<h3>Agricultural Solar Pumps</h3>

<p>Muzaffarpur, Bihar</p>

</div>

</div>

</div>

</div>

</section>


<!-- Team Section -->

<section class="team" id="team">

<div class="container">

<div class="section-title">

<h2>Our Leadership Team</h2>

</div>

<div class="team-container">

<div class="director-card">

<div class="director-header">

<h3>Mohammad Ejaz</h3>

<p>Director (Operational)</p>

</div>

<div class="director-details">

<div class="detail-row">

<div class="detail-label">Email</div>

<div class="detail-value">ejazmohammad188@gmail.com</div>

</div>

<div class="detail-row">

<div class="detail-label">Mobile</div>

<div class="detail-value">8073570649</div>

</div>

</div>

</div>

<div class="director-card">

<div class="director-header">

<h3>R. Kumar</h3>

<p>Director (Strategic Advisor)</p>

</div>

<div class="director-details">

<div class="detail-row">

<div class="detail-label">Role</div>

<div class="detail-value">Strategic Advisor</div>

</div>

<div class="detail-row">

<div class="detail-label">Expertise</div>

<div class="detail-value">Solar Energy Strategy & Business Development</div>

</div>

</div>

</div>

</div>

</div>

</section>


<!-- Corporate Address Section -->

<section class="corporate-address">

<div class="container address-container">

<h2>Our Corporate Office</h2>

<div class="address-box">

<h3>RE Mahaveer Green Energy and Infra Private Limited</h3>

<p>Exta Nagar, Road No.-01, Khoza Imli Mazar</p>

<p>Phulwari Sharif, Phulwari</p>

<p>Patna, Bihar - 801505</p>

<p>India</p>

</div>

<div class="founding-year">

Founded in 2025

</div>

</div>

</section>


<!-- Calculator Section -->

<section class="calculator" id="calculator">

<div class="container">

<div class="section-title">

<h2>Solar Savings Calculator</h2>

</div>

<div class="calculator-container">

<div class="calculator-form">

<h3>Calculate Your Savings</h3>

<div class="form-group">

<label for="bill">Average Monthly Electricity Bill (₹)</label>

<input type="number" id="bill" placeholder="e.g., 5000">

</div>

<div class="form-group">

<label for="roof">Available Roof Area (sq. ft.)</label>

<input type="number" id="roof" placeholder="e.g., 300">

</div>

<div class="form-group">

<label for="location">Location</label>

<select id="location">

<option value="urban">Urban</option>

<option value="rural">Rural</option>

</select>

</div>

<button class="btn btn-primary" id="calculate-btn">Calculate Savings</button>

</div>

<div class="calculator-result">

<h3>Your Estimated Savings</h3>

<div class="result-value">₹ 0</div>

<p>per month on your electricity bills</p>

<p>Payback period: <strong>4-5 years</strong></p>

<p>System size: <strong>3 kW</strong></p>

<a href="#contact" class="btn">Get Detailed Quote</a>

</div>

</div>

</div>

</section>


<!-- Testimonials Section -->

<section class="testimonials">

<div class="container">

<div class="section-title">

<h2>What Our Customers Say</h2>

</div>

<div class="testimonials-container">

<div class="testimonial">

<div class="testimonial-content">

"RE Mahaveer Green Energy and Infra Private Limited installed solar panels on my farm. The subsidy process was handled smoothly, and I'm saving over ₹4000 per month on electricity bills. Highly recommended!"

</div>

<div class="testimonial-author">

<div class="author-avatar"></div>

<div class="author-info">

<h4>Rajesh Kumar</h4>

<p>Farmer, Gaya</p>

</div>

</div>

</div>

</div>

</div>

</section>


<!-- Blog Section -->

<section class="blog">

<div class="container">

<div class="section-title">

<h2>Latest from Our Knowledge Hub</h2>

</div>

<div class="blog-grid">

<div class="blog-card">

<div class="blog-image" style="background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');"></div>

<div class="blog-content">

<h3>Benefits of Solar in Rural Bihar</h3>

<p>Discover how solar energy is transforming rural communities in Bihar with reliable power and economic opportunities.</p>

<div class="blog-meta">

<span><i class="far fa-calendar"></i> June 15, 2023</span>

<a href="#">Read More</a>

</div>

</div>

</div>

<div class="blog-card">

<div class="blog-image" style="background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');"></div>

<div class="blog-content">

<h3>Understanding the New MNRE Subsidy Scheme</h3>

<p>A complete guide to the latest MNRE subsidy schemes for solar installations in residential and commercial sectors.</p>

<div class="blog-meta">

<span><i class="far fa-calendar"></i> May 28, 2023</span>

<a href="#">Read More</a>

</div>

</div>

</div>

<div class="blog-card">

<div class="blog-image" style="background-image: url('https://images.unsplash.com/photo-1549399542-7c3baf714b7d?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');"></div>

<div class="blog-content">

<h3>Maintenance Tips for Your Solar Panels</h3>

<p>Learn how to maintain your solar panels for optimal performance and longevity with these simple tips.</p>

<div class="blog-meta">

<span><i class="far fa-calendar"></i> April 10, 2023</span>

<a href="#">Read More</a>

</div>

</div>

</div>

</div>

</div>

</section>


<!-- CTA Section -->

<section class="cta">

<div class="container">

<h2>Ready to Go Solar?</h2>

<p>Join thousands of satisfied customers who are saving money and contributing to a greener planet with RE Mahaveer Green Energy and Infra Private Limited.</p>

<a href="#contact" class="btn btn-primary">Start Your Solar Journey Today</a>

</div>

</section>


<!-- Footer -->

<footer id="contact">

<div class="container">

<div class="footer-container">

<div class="footer-column">

<h3>RE Mahaveer Green Energy and Infra Private Limited</h3>

<p>Founded in 2025, we are your trusted partner for solar energy solutions in Bihar. MNRE & BREDA empanelled for government subsidy-linked solar projects.</p>

<div class="social-links">

<a href="#"><i class="fab fa-facebook-f"></i></a>

<a href="#"><i class="fab fa-twitter"></i></a>

<a href="#"><i class="fab fa-instagram"></i></a>

<a href="#"><i class="fab fa-linkedin-in"></i></a>

</div>

</div>

<div class="footer-column">

<h3>Quick Links</h3>

<ul class="footer-links">

<li><a href="#home">Home</a></li>

<li><a href="#services">Services</a></li>

<li><a href="#projects">Projects</a></li>

<li><a href="#team">Our Team</a></li>

<li><a href="#subsidies">Subsidies</a></li>

<li><a href="#calculator">Savings Calculator</a></li>

</ul>

</div>

<div class="footer-column">

<h3>Services</h3>

<ul class="footer-links">

<li><a href="#">Rooftop Solar</a></li>

<li><a href="#">Solar Pumps</a></li>

<li><a href="#">Solar Street Lights</a></li>

<li><a href="#">Solar EPC</a></li>

<li><a href="#">Product Supply</a></li>

</ul>

</div>

<div class="footer-column">

<h3>Contact Us</h3>

<ul class="footer-links">

<li><i class="fas fa-map-marker-alt"></i> Corporate Office: Exta Nagar, Road No.-01, Khoza Imli Mazar, Phulwari Sharif, Patna, Bihar - 801505</li>

<li><i class="fas fa-phone"></i> +91 8073570649</li>

<li><i class="fas fa-envelope"></i> ejazmohammad188@gmail.com</li>

</ul>

</div>

</div>

<div class="footer-bottom">

<p>&copy; 2025 RE Mahaveer Green Energy and Infra Private Limited. All Rights Reserved.</p>

</div>

</div>

</footer>


<!-- WhatsApp Float Button -->

<a href="https://wa.me/918073570649" class="whatsapp-float" target="_blank">

<i class="fab fa-whatsapp"></i>

</a>


<script>

// Mobile Menu Toggle

document.querySelector('.mobile-menu').addEventListener('click', function() {

document.querySelector('nav ul').classList.toggle('active');

});


// Savings Calculator

document.getElementById('calculate-btn').addEventListener('click', function() {

const billAmount = parseFloat(document.getElementById('bill').value);

if (billAmount && billAmount > 0) {

const savings = billAmount * 0.7; // Assuming 70% savings

document.querySelector('.result-value').textContent = '₹ ' + savings.toLocaleString('en-IN');

} else {

alert('Please enter a valid monthly electricity bill amount.');

}

});


// Smooth Scrolling for Anchor Links

document.querySelectorAll('a[href^="#"]').forEach(anchor => {

anchor.addEventListener('click', function(e) {

e.preventDefault();

const targetId = this.getAttribute('href');

if (targetId === '#') return;

const targetElement = document.querySelector(targetId);

if (targetElement) {

window.scrollTo({

top: targetElement.offsetTop - 100,

behavior: 'smooth'

});

}

});

});

</script>

</body>

</html>

main Touch

We are here to assist you with solar solutions.

Our Location

Visit us to explore sustainable energy solutions tailored for Bihar. We are committed to providing innovative infrastructure.

Headquarters

123 Green Energy Lane, Patna

Office Hours

9 AM - 5 PM

Branch Office

456 Solar Street, Gaya

Business Hours

10 AM - 4 PM

Closed on Sundays

Regional Office

789 Eco Park Road, Bhagalpur

Visiting Hours

Welcome to [Your Website Name]!

These terms and conditions outline the rules and regulations for the use of [Your Company Name]'s Website, located at [Your Website Address].

By accessing this website, we assume you accept these terms and conditions. Do not continue to use [Your Website Name] if you do not agree to take all of the terms and conditions stated on this page.

Cookies:

The website uses cookies to help personalize your online experience. By accessing [Your Website Name], you agreed to use the required cookies.

A cookie is a text file that is placed on your hard disk by a web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you and can only be read by a web server in the domain that issued the cookie to you.

We may use cookies to collect, store, and track information for statistical or marketing purposes to operate our website. You have the ability to accept or decline optional Cookies. There are some required Cookies that are necessary for the operation of our website. These cookies do not require your consent as they always work. Please keep in mind that by accepting required Cookies, you also accept third-party Cookies, which might be used via third-party provided services if you use such services on our website, for example, a video display window provided by third parties and integrated into our website.

License:

Unless otherwise stated, [Your Company Name] and/or its licensors own the intellectual property rights for all material on [Your Website Name]. All intellectual property rights are reserved. You may access this from [Your Website Name] for your own personal use subjected to restrictions set in these terms and conditions.

You must not:

  • Copy or republish material from [Your Website Name]

  • Sell, rent, or sub-license material from [Your Website Name]

  • Reproduce, duplicate or copy material from [Your Website Name]

  • Redistribute content from [Your Website Name]

This Agreement shall begin on the date hereof.

Parts of this website offer users an opportunity to post and exchange opinions and information in certain areas of the website. [Your Company Name] does not filter, edit, publish or review Comments before their presence on the website. Comments do not reflect the views and opinions of [Your Company Name], its agents, and/or affiliates. Comments reflect the views and opinions of the person who posts their views and opinions. To the extent permitted by applicable laws, [Your Company Name] shall not be liable for the Comments or any liability, damages, or expenses caused and/or suffered as a result of any use of and/or posting of and/or appearance of the Comments on this website.

[Your Company Name] reserves the right to monitor all Comments and remove any Comments that can be considered inappropriate, offensive, or causes breach of these Terms and Conditions.

You warrant and represent that:

  • You are entitled to post the Comments on our website and have all necessary licenses and consents to do so;

  • The Comments do not invade any intellectual property right, including without limitation copyright, patent, or trademark of any third party;

  • The Comments do not contain any defamatory, libelous, offensive, indecent, or otherwise unlawful material, which is an invasion of privacy.

  • The Comments will not be used to solicit or promote business or custom or present commercial activities or unlawful activity.

You hereby grant [Your Company Name] a non-exclusive license to use, reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and all forms, formats, or media.

Hyperlinking to our Content:

The following organizations may link to our Website without prior written approval:

  • Government agencies;

  • Search engines;

  • News organizations;

  • Online directory distributors may link to our Website in the same manner as they hyperlink to the Websites of other listed businesses; and

  • System-wide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our Web site.

These organizations may link to our home page, to publications, or to other Website information so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement, or approval of the linking party and its products and/or services; and (c) fits within the context of the linking party's site.

We may consider and approve other link requests from the following types of organizations:

  • Commonly-known consumer and/or business information sources;

  • Dot.com community sites;

  • Associations or other groups representing charities;

  • Online directory distributors;

  • Internet portals;

  • Accounting, law, and consulting firms; and

  • Educational institutions and trade associations.

We will approve link requests from these organizations if we decide that: (a) the link would not make us look unfavorably to ourselves or to our accredited businesses; (b) the organization does not have any negative records with us; (c) the benefit to us from the visibility of the hyperlink compensates the absence of [Your Company Name]; and (d) the link is in the context of general resource information.

These organizations may link to our home page so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement, or approval of the linking party and its products or services; and (c) fits within the context of the linking party's site.

If you are one of the organizations listed in paragraph 2 above and are interested in linking to our website, you must inform us by sending an e-mail to [Your Company Name]. Please include your name, your organization name, contact information as well as the URL of your site, a list of any URLs from which you intend to link to our Website, and a list of the URLs on our site to which you would like to link. Wait 2-3 weeks for a response.

Approved organizations may hyperlink to our Website as follows:

  • By use of our corporate name; or

  • By use of the uniform resource locator being linked to; or

  • Using any other description of our Website being linked to that makes sense within the context and format of content on the linking party's site.

No use of [Your Company Name]'s logo or other artwork will be allowed for linking absent a trademark license agreement.

Content Liability:

We shall not be held responsible for any content that appears on your Website. You agree to protect and defend us against all claims that are raised on your Website. No link(s) should appear on any Website that may be interpreted as libelous, obscene, or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.

Reservation of Rights:

We reserve the right to request that you remove all links or any particular link to our Website. You approve to immediately remove all links to our Website upon request. We also reserve the right to amend these terms and conditions and its linking policy at any time. By continuously linking to our Website, you agree to be bound to and follow these linking terms and conditions.

Removal of links from our website:

If you find any link on our Website that is offensive for any reason, you are free to contact and inform us at any moment. We will consider requests to remove links, but we are not obligated to or so or to respond to you directly.

We do not ensure that the information on this website is correct. We do not warrant its completeness or accuracy, nor do we promise to ensure that the website remains available or that the material on the website is kept up to date.

Disclaimer:

To the maximum extent permitted by applicable law, we exclude all representations, warranties, and conditions relating to our website and the use of this website. Nothing in this disclaimer will:

  • Limit or exclude our or your liability for death or personal injury;

  • Limit or exclude our or your liability for fraud or fraudulent misrepresentation;

  • Limit any of our or your liabilities in any way that is not permitted under applicable law; or

  • Exclude any of our or your liabilities that may not be excluded under applicable law.

The limitations and prohibitions of liability set in this Section and elsewhere in this disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer, including liabilities arising in contract, in tort, and for breach of statutory duty.

As long as the website and the information and services on the website are provided free of charge, we will not be liable for any loss or damage of any nature.

User Agreement