<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Vishal Krushi Udyog - About Us</title>
  <link rel="stylesheet" href="css/style.css">
  <link href="https://fonts.googleapis.com/css2?family=Baloo+2&display=swap" rel="stylesheet">
  <!-- Font Awesome for Social Icons -->
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
</head>
<body>
  <header>
    <h1>Vishal Krushi Udyog</h1>
    <nav>
      <a href="index.html">Home</a>
      <a href="products.html">Products</a>
      <a href="contact.html">Contact</a>
      <a href="about.html" class="active">About Us</a>
    </nav>
  </header>

  <main>
    <section class="card">
      <h2>About Us</h2>
      <p><strong>Vishal Krushi Udyog</strong> is a <strong>company</strong> established to support farmers. We provide modern, high-quality, and durable farming equipment at affordable prices.</p>
      <p>Our mission is to empower farmers and provide them with the benefits of modern technology. Our products are known for reliability, quality, and efficiency.</p>
      <p>Thousands of farmers in Gadchiroli district trust us. Be a part of it and enjoy the benefits of modern farming!</p>
    </section>

    <section class="card">
      <h3>Follow Us on Social Media</h3>
      <div class="social-buttons">
        <a href="#" class="facebook"><i class="fab fa-facebook"></i> Facebook</a>
        <a href="#" class="twitter"><i class="fab fa-twitter"></i> Twitter</a>
        <a href="#" class="whatsapp"><i class="fab fa-whatsapp"></i> WhatsApp</a>
        <a href="#" class="youtube"><i class="fab fa-youtube"></i> YouTube</a>
        <a href="https://instagram.com/vishalkrushiudyog" target="_blank" class="instagram">
          <i class="fab fa-instagram"></i> Instagram: @vishalkrushiudyog
        </a>
        <a href="mailto:vishalkrushiudyog@gmail.com" class="gmail">
          <i class="fas fa-envelope"></i> vishalkrushiudyog@gmail.com
        </a>
      </div>
    </section>
  </main>

  <footer>
    <p>© 2025 Vishal Krushi Udyog. All rights reserved.</p>
  </footer>
</body>
</html>
/* Social Buttons - Brand Colors */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  padding: 12px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #eee;
  transition: all 0.3s ease;
}

.social-buttons a i {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

/* Brand Icon Colors */
.facebook i { color: #1877F2; }
.twitter i { color: #1DA1F2; }
.whatsapp i { color: #25D366; }
.youtube i { color: #FF0000; }
.instagram i { 
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gmail i { color: #EA4335; }

/* Hover Effect */
.social-buttons a:hover {
  background: #f9f9f9;
  border-color: currentColor;
  transform: translateX(5px);
}
/* Base Styling */
body {
  margin: 0;
  font-family: 'Baloo 2', sans-serif;
  background: linear-gradient(to bottom right, #e8f5e9, #ffffff);
  color: #333;
  line-height: 1.7;
}

/* Header */
header {
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: bold;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease;
  padding-bottom: 4px;
}

nav a:hover, nav a.active {
  color: #ffeb3b;
  border-bottom: 3px solid #ffeb3b;
}

/* Card Sections */
.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 25px;
  margin: 25px auto;
  max-width: 900px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

h2, h3 {
  color: #2e7d32;
  margin-bottom: 15px;
}

/* Social Buttons */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 1rem;
}

/* Brand Colors */
.facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }
.whatsapp { background: #25D366; }
.youtube { background: #FF0000; }
.instagram { 
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.gmail { background: #EA4335; }

/* Hover Glow */
.social-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-radius: 12px 12px 0 0;
  font-size: 0.9rem;
}
.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.primary-image {
  transition: opacity 0.5s ease;
}

.secondary-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-wrapper:hover .primary-image {
  opacity: 0;
}

.image-wrapper:hover .secondary-image {
  opacity: 1;
}
.product {
  background: #fff;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.product a {
  text-decoration: none;
  color: inherit;
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.back-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.back-link:hover {
  background: #16a085;
}
.back-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.back-link:hover {
  background: #16a085;
}
