:root {
  --primary-color: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #81c784;
  --text-dark: #333;
  --text-light: #f8f9fa;
  --bg-light: #fefefe;
}

  #colornav
    {
      color:var(--primary-color);

    }

/* Base Styles */
body {
  font-family: 'Playfair Display', serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
}

/* Navbar */
.navbar {
  transition: all 0.5s ease;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
  .navbar {
    padding: 12px 15px;
  }
  
  .navbar.scrolled {
    padding: 8px 15px;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 70px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
  }
  
  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    margin: 10px 0;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    display: block;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
  }
  
  .nav-link.active {
    background-color: rgba(46, 125, 50, 0.15);
  }
  
  .navbar-toggler {
    padding: 0.5rem;
    border: none;
    font-size: 1.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
  
  .navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    transition: all 0.3s ease;
  }
  
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    transition: all 0.3s ease;
  }
  
  .navbar-toggler-icon::before {
    transform: translateY(-7px);
  }
  
  .navbar-toggler-icon::after {
    transform: translateY(7px);
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }
  
  /* Adjust hero section for mobile */
  .hero-section {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
  
  /* Ensure content isn't hidden behind navbar */
  section {
    scroll-margin-top: 70px;
  }
}

/* Buttons */
.btn-shop {
  background-color: var(--primary-color);
  color: white;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-shop:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
  color: white;
}

.btn-shop:active {
  transform: translateY(1px);
}

.btn-shop::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-shop:hover::before {
  left: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: -2;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  transform: translateY(20px);
  opacity: 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* Headings */
.section-heading {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* About Section */
.about-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-content {
  padding-left: 30px;
}

.about-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-light);
}

@media (max-width: 991.98px) {
  .about-content {
    padding-left: 0;
    padding-top: 30px;
  }
}

/* Values Section */
.value-card {
  border-radius: 15px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #fff;
  border: none;
  overflow: hidden;
  height: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover .card-title,
.value-card:hover .card-text,
.value-card:hover .icon-wrapper img {
  color: white;
  filter: brightness(0) invert(1);
}

.icon-wrapper {
  padding: 25px 0;
  transition: all 0.5s ease;
}

.icon-wrapper img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: all 0.5s ease;
}

.card-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: color 0.5s ease;
}

.card-text {
  font-size: 1rem;
  color: #555;
  transition: color 0.5s ease;
}

/* Services Section */
.service-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 25px;
  background-color: white;
}

.service-card-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.service-card-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.service-card:hover .service-card-title::after {
  width: 80px;
}

.service-card-text {
  color: #555;
  font-size: 0.95rem;
}

/* Products Section */
.product-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
}

.product-img {
  height: 250px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-body {
  padding: 20px;
  background-color: white;
}

.product-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.product-text {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.product-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.product-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-size: 0.85rem;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Benefits Section */
.benefits-container {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.benefits-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.benefits-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.benefits-list {
  list-style-type: none;
  padding-left: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.benefits-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}


/* Contact Section */
#contact {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.contact-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  flex: 1 1 40%;
  min-width: 300px;
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card {
  flex: 1 1 55%;
  min-width: 300px;
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  background: rgba(46, 125, 50, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2d3748;
  font-weight: 600;
}

.contact-details p {
  margin-bottom: 0;
  color: #4a5568;
  line-height: 1.6;
}

.contact-details a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
}

/* Form Styles */
.form-floating {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-control {
  height: calc(3.5rem + 2px);
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
  background-color: white;
}

textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

label {
  color: #718096;
  padding: 0.5rem 1.25rem;
}

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #3a7d3f;
  transform: translateY(-2px);
}

/* Map Styles */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 350px;
  margin-top: 2rem;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info-card,
  .contact-form-card {
    flex: 1 1 100%;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .contact-method {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-icon {
    margin-bottom: 0.75rem;
  }
  
  .form-control {
    height: calc(3rem + 2px);
    padding: 0.75rem 1rem;
  }
}/* Image Marquee */
.image-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.image-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.image-track img {
  height: 150px;
  margin: 0 25px;
  object-fit: contain;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.image-track img:hover {
  transform: scale(1.3);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}



/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/footer-pattern.webp') repeat;
  opacity: 0.05;
  z-index: 0;
}

footer .container {
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-links h5 {
  color: var(--primary-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info-list i {
  color: var(--primary-light);
  width: 20px;
  margin-right: 10px;
}

.footer-map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

.footer-credits {
  color: #777;
  font-size: 0.9rem;
}

/* Animation for footer elements */
.footer-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.footer-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  color: white;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}



/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .section-heading {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .benefits-container {
    padding: 20px;
  }
  
  .contact-form {
    padding: 20px;
  }
}