Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 130 additions & 0 deletions sustainable-farming.html
Original file line number Diff line number Diff line change
Expand Up @@ -960,6 +960,102 @@
::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}

.site-footer {
background: linear-gradient(135deg, #2e7d32, #66bb6a);
color: #fff;
margin-top: 80px;
padding: 2rem 1.25rem;
}

.site-footer .footer-inner {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
align-items: flex-start;
}

.footer-brand {
display: flex;
flex-direction: column;
gap: .5rem
}

.footer-logo {
width: 48px;
height: 48px;
border-radius: 8px;
object-fit: cover;
background: #fff;
padding: 4px
}

.site-footer h3,
.site-footer h4 {
margin: 0 0 .5rem 0
}

.site-footer p {
margin: 0;
opacity: .9
}

.site-footer ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: .4rem
}

.site-footer a {
color: #fff;
text-decoration: none;
opacity: .9;
transition: opacity .2s
}

.site-footer a:hover {
opacity: 1;
text-decoration: underline
}

.footer-bottom {
max-width: 1200px;
margin: 1rem auto 0;
padding-top: 1rem;
border-top: 1px solid rgba(255, 255, 255, .25);
text-align: center;
font-size: .9rem;
opacity: .9
}

.social-media {
display: flex;
gap: 1rem;
margin-top: .5rem
}

.social-media a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, .1);
border-radius: 50%;
transition: all .3s ease;
font-size: 1.2rem
}

.social-media a:hover {
background: rgba(255, 255, 255, .2);
transform: translateY(-2px)
}

</style>
</head>

Expand Down Expand Up @@ -1301,6 +1397,40 @@ <h4>
</div>
<!-- Cursor Trail -->
<div class="circle-container" id="cursorTrail"></div>

<footer class="site-footer">
<div class="footer-inner">
<div class="footer-brand">
<img src="images/logo.png" alt="AgriTech logo" class="footer-logo">
<h3>AgriTech</h3>
<p>Empowering India's Farming Future</p>
<div class="social-media">
<a href="https://instagram.com" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://github.com/omroy07" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/om-roy-3b809628a/" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="footer-links">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="main.html">Dashboard</a></li>
<li><a href="feed-back.html">Feedback</a></li>
<li><a href="chat.html">AI Assistant</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Tools</h4>
<ul>
<li><a href="crop_recommendation/templates/index.html">Crop Recommendation</a></li>
<li><a href="Crop Yield Prediction/crop_yield_app/templates/index.html">Yield Prediction</a></li>
<li><a href="disease.html">Disease Detector</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">© 2025 AgriTech • Made for farmers</div>
</footer>

<script>
// Update range slider values
['currentPractices', 'waterUsage', 'organicUse', 'energyEfficiency'].forEach(id => {
Expand Down
Loading