/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #34495e;
  }
  
  a {
    color: #2ecc71;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  /* Global Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* Header */
  header {
    background-color: #86055d;
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  /* Header Container */
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Logo */
  header img {
    height: 50px;
  }
  
  header h1 {
    font-size: 1.8rem;
    margin-right:20px;

  }
  
  /* Hamburger Menu Icon */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
  }
  
  /* Navigation */
  nav {
    background-color: #f8f8f8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
  }
  
  nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
  }
  
  nav a:hover {
    color: #2ecc71;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      background-color: #f8f8f8;
      padding: 15px 0;
    }
  
    nav ul.active {
      display: flex;
    }
  }
  
  
  /* Section Styling */
  section {
    padding: 60px 20px;
  }
  
  .content-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f4f9f6;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .content-box h2 {
    color: #86055d;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .content-box h3 {
    margin-top: 25px;
    color: #2ecc71;
    font-size: 1.2rem;
  }
  
  .content-box p,
  .content-box li {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
  
  /* Lists */
  ul {
    padding-left: 20px;
  }
  
  /* WhatsApp Floating Button */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .whatsapp-float img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }
  
  /* Footer */
  footer {
    background-color: #86055d;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 60px;
    width: 100%;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 15px;
    }
  
    .content-box {
      padding: 20px;
    }
  
    header h1 {
      font-size: 1.6rem;
    }
  }
  
  /* Hero Section */
  .home-hero {
    background: url('./pexels-nc-farm-bureau-mark-2253583.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
  }
  
  .hero-overlay {
    background-color: rgba(52, 73, 94, 0.75);
    padding: 40px;
    border-radius: 10px;
  }
  
  .hero-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    background-color: #2ecc71;
    padding: 10px 25px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #27ae60;
  }
  
  /* Products Grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .product-card h3 {
    color: #34495e;
    margin: 15px 0 10px;
  }
  
  .product-card p {
    font-size: 1rem;
    padding: 0 15px;
  }
  /* Contact Form Styling */
  .contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .contact-form button {
    margin-top: 15px;
    background-color: red;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #2c3e50;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
  }
  
  .social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }
  
  .about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
  }
  
  .about-content h2 {
    font-size: 2rem;
    color: #34495e;
    margin-bottom: 20px;
  }
  
  .about-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .about-box {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: left;
  }
  
  .about-box h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .about-box p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
  }
  .contact1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    margin-top: 40px;
  }
  
  .form2,
  .info {
    flex: 1 1 45%;
    min-width: 300px;
    margin-top: -50px;
  }
  
  /* Form styling */
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-top: 10px;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form button {
    margin-top: 15px;
    padding: 12px;
    background-color:#34495e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: dark #03172b;
  }
  
  /* Info block */
  .info p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .info{
    margin-top: 10px;
  }
  
  .info a {
    color: green;
    text-decoration: none;
    }

  .about-box i {
    color: green;
    margin-right: 8px;
  }
  
  .about-box p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }

  .about-box p:last-child {
    margin-bottom: 0;
  }     
  
    
     