/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #222;
}

Dark mode styles
body.dark-mode {
  background-color: #000000;
  color: #eee;
}

body.dark-mode .container {
  background-color: #1e1e1e;
  border-bottom-color: #333;
}


body.dark-mode a,
body.dark-mode .main-nav a,
body.dark-mode .mobile-nav-list a {
  color: #ddd;
}

body.dark-mode a:hover,
body.dark-mode .main-nav a:hover,
body.dark-mode .mobile-nav-list a:hover {
  color: #ff9800;
  background-color: transparent;
}

body.dark-mode .search-wrapper,
body.dark-mode .mobile-search {
  background-color: #222;
  border-color: #444;
}

body.dark-mode .search-wrapper input,
body.dark-mode .mobile-search input .mobile-nav-list {
  background-color: #222;
  color: #eee;
  border: none;
}

body.dark-mode .language-select,
body.dark-mode .mobile-language-select {
  background-color: #222;
  color: #eee;
  border-color: #444;
}


body.dark-mode .mobile-menu,
body.dark-mode {
  background-color: #222;
  color: #eee;
}

body.dark-mode .hamburger-btn {
  color: #eee;
}

body.dark-mode .hamburger-btn:hover {
  color: #ff9800;
  background-color: transparent;
}

body.dark-mode .cart-btn,
body.dark-mode .mode-toggle,
body.dark-mode .mobile-cart-btn,
body.dark-mode .mobile-theme-toggle {
  color: #ff9800;
}

body.dark-mode .search-wrapper button,
body.dark-mode .mobile-search button {
  background-color: #ff9800;
  color: #121212;
}

body.dark-mode .search-wrapper button:hover,
body.dark-mode .mobile-search button:hover {
  background-color: #e68a00;
}


body.dark-mode .product-card{
  background-color: #fffcfc10;
  color: white;
}
body.dark-mode .featured-products{
 background-color: #222;
  color: #eee;
}
body.dark-mode h3{
color: #eee;
}

body.dard-mode .featured-text{
  color: white;
  background-color: #222;
}

body.dark-mode .separator{
  background-color: #3d3c3c;
  color: #666;
}

body.dark-mode .testimonial-text{
  color: #eee;

}

body.dark-mode .testimonial-name{
  color: #eee;
}


body.dark-mode .testimonial-item{
background-color: #fffcfc10;
}

body.dark-mode .faq-section{
  background-color: #fffcfc10;
}

body.dark-mode .faq-section{
  background-color: #222;
  color: #aaa;
}

body.dark-mode .faq-answer{
  background-color: #3d3c3c;
  color: #eee;
}

body.dark-mode .footer{
   background-color: #1e1e1e;
  border-bottom-color: #333;
  color: #eee;
}

body.dark-mode .contact-intro {
  background-color: #222;
  color: #eee;
}

body.dark-mode .p {
  color: #eee;
}

body.dark-mode .contact-hero{
  background-color: #333;
  color: #eee;
}

body.dark-mode .foote {
  background-color: #1e1e1e;
   border-bottom-color: #333;
  color: #eee;
}

body.dark-mode .contact-section{
  color: #eee;
  background-color: #222;
}

body.dark-mode .contact-form{
  color: #eee;
  background-color: #ffffff09;
}

body.dark-mode .contact-info{
  color: #eee;
  background-color: #ffffff09;
}

body.dark-mode .map-section{
  color: #eee;
  background-color: #222;
}


/* Add any other dark mode color tweaks as needed */


/* Container */
.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.4);
}

/* Logo */
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}

/* Main Nav Desktop */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  background-color: #ff6600;
  color: white;
  outline: none;
}

/* Header Controls Desktop */
.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Language Select Desktop */
.language-select {
  padding: 5px 8px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

/* Search Bar Desktop */
.desktop-search {
  position: relative;
  background-color: #dbdbdb;
  border-radius: 30px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  margin-left: auto;
  transition: all 0.3s ease;
}

.desktop-search input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  width: 220px;
  outline: none;
  border-radius: 30px;
  font-size: 1rem;
}

.desktop-search button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.desktop-search button:hover {
  background-color: #e65500;
}

/* Cart Button Desktop */
.cart-btn {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.cart-btn:hover {
  color: #ff6600;
}

/* Mode Toggle Desktop */
.mode-toggle {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.mode-toggle:hover {
  color: #ff6600;
}

/* Hamburger (Mobile) */
.hamburger-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  display: none;
  /* hidden on desktop */
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

/* Show mobile menu */
.mobile-menu.active {
  left: 0;
}

/* Close button mobile menu */
.close-btn {
  align-self: flex-end;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff6600;
}

/* Mobile Nav List */
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: block;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus {
  background-color: #ff6600;
  color: white;
  outline: none;
}

/* Language select mobile */
.mobile-language-select {
  padding: 8px 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* Mobile Search Container */
.mobile-search-container {
  position: relative;
  background-color: #b4b2b2;
  border-radius: 30px;
  padding: 5px 15px;
  display: flex;
  width: 100%;
  align-items: center;
  margin-left: auto;
  transition: all 0.3s ease;
}

.mobile-search-container input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  width: 159px;
  outline: none;
  border-radius: 30px;
  font-size: 1rem;
}

.mobile-search-container button {
  background: #ff6600;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mobile-search-container button:hover {
  background-color: #e65500;
}

/* Mobile Cart Button */
.mobile-cart-btn {
  font-size: 1.2rem;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: left;
}

.mobile-cart-btn:hover {
  background-color: #ff6600;
  color: white;
}

/* Mobile Mode Toggle */
.mobile-theme-toggle {
  font-size: 1.2rem;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: left;
}

.mobile-theme-toggle:hover {
  background-color: #ff6600;
  color: #ffffff;
}

/* Responsive Queries */

/* Mobile View */
@media (max-width: 900px) {

  /* Hide desktop nav and controls */
  .main-nav,
  .header-controls .language-select,
  .desktop-search,
  .cart-btn,
  .mode-toggle {
    display: none;
  }

  /* Show hamburger */
  .hamburger-btn {
    display: block;
  }
}










/* CONTACT PAGE BANNER */
.contact-banner {
  background: url('images/agric\ 2.jpg') center center/cover no-repeat;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-content {
  color: #fff;
  text-align: center;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
}

.banner-content p {
  font-size: 16px;
  margin-top: 10px;
  color: #eee;
}

/* INTRO TEXT */
.contact-intro {
  text-align: center;
  padding: 40px 20px;
  /* background: #f8f9fa; */
}

.contact-intro h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 36px;
  }
  .contact-intro h2 {
    font-size: 24px;
  }
}


/* .contact-banner,
.contact-intro {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.contact-banner.fade-in,
.contact-intro.fade-in {
  opacity: 1;
  transform: translateY(0);
} */














/* Contact Banner Styles */
.contact-section {
  padding: 40px 20px;
  /* background: #f4f4f4; */
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.contact-form,
.contact-info {
  flex: 1 1 45%;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.contact-form h2,
.contact-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}
.contact-form button {
  background-color: #ff6a00;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #e65a00;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  margin-bottom: 12px;
  font-size: 15px;
}
.contact-info a {
  color: #0077cc;
  text-decoration: none;
}
.social-icons {
  margin-top: 20px;
}
.social-icons a {
  color: #333;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #ff6a00;
}
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form, .contact-info {
    flex: 1 1 100%;
  }
}














  
  a {
  text-decoration: none;
  color: inherit;
}

h2 {
  font-size: 1.8rem;
  color: orange;
  margin-bottom: 20px;
}

/* ===============================
   Contact Section (2 Columns)
================================== */
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 10%;
  /* background: #fff; */
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-info a {
  color: #000;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: orange;
}

/* Buttons */
.map-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-map {
  background: #333;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.btn-map:hover {
  background: orange;
}

/* ===============================
   Form Styling
================================== */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background: orange;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #ff7f00;
}

/* ===============================
   Map Section
================================== */
.map-section {
  padding: 40px 10%;
  /* background: #f1f1f1; */
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* ===============================
   Social Media Footer
================================== */
.social-media {
  background: #111;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: orange;
}

/* ===============================
   Footer
================================== */
.main-footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* ===============================
   Responsive Design
================================== */

/* Tablet */
@media (max-width: 1024px) {
  .contact-details {
    grid-template-columns: 1fr;
    padding: 40px 8%;
  }

  h2 {
    font-size: 1.6rem;
  }
}

/* Phone */
@media (max-width: 600px) {
  .contact-details {
    gap: 30px;
    padding: 30px 5%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .btn-map {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .map-section {
    padding: 20px 5%;
  }

  .social-icons a {
    font-size: 1.3rem;
  }

  .map-section iframe {
    height: 300px;
  }
}















.faq-section {
  max-width: 89%;
  display: block;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-text {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  position: relative;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #f9f9f9;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  color: #333;
}

.faq-question:hover {
  background: #f0f0f0;
}

.arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1rem;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  color: #555;
  font-size: 1rem;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 1rem;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

















.footer {
  background: rgb(255, 255, 255);
  color: #000000;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.4);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 120px;
  min-width: 200px;
}

.footer-logo img {
  max-width: 60px;
  margin-bottom: 10px;
  border-radius: 60px;
  height: 60px;
  width: 60px;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ff6600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-section ul li i {
  margin-right: 8px;
  color: #ff6600;
}

.footer-section a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  /* background-color: #000000; */
   color: #ff6600;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #e05500;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  /* color: #000000; */
}
