
:root {
--primary-color: #2e7d32;
--primary-dark: #1b5e20;
--primary-light: #81c784;
--secondary-color: #ff8f00;
--secondary-dark: #ff6f00;
--text-color: #333;
--text-light: #666;
--light-bg: #f9f9f9;
--white: #ffffff;
--transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
--shadow: 0 15px 30px rgba(0,0,0,0.1);
--shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--light-bg);
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.section-title.style1 p {
  color: #fff;
}
.section-title.style1 h2 {
  color: #fff;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}
.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}
.btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(255, 143, 0, 0.3);
}
.btn:hover {
  background: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--white);
}
.scrolled .mobile-menu-btn {
  color: #000;
}
/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-content  h1 {

  font-size: 12px;

}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
text-align: center;
  padding: 0 0 0 60px;
  position: relative;    color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.logo  a{
    color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.logo img {
  width: auto;
  height: 71px;
  position: absolute;
  top: -11px;
  left: 0;
}
header.scrolled .logo a, header.scrolled nav ul li a ,header.scrolled .logo{
  color: var(--primary-dark);
}
@media screen and (max-width: 767px) {
.logo img {
  height: 60px;
}
.logo {
  padding-left: 41px;
  font-size: 1.5rem;
}
}
.logo span {
  color: var(--secondary-color);
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 30px;
  position: relative;
}
nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}
nav ul li a:hover::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
/* Hero Section */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(30, 87, 35, 0.9), rgba(30, 87, 35, 0.7));
  z-index: 1;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: zoomInOut 20s infinite alternate;
}
@keyframes zoomInOut {
0% {
transform: scale(1);
}
100% {
transform: scale(1.1);
}
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}
.hero-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}
.hero-btns {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* About Section */
.about {
  background-color: var(--white);
}
.about-content {
  display: flex;
  gap: 50px;
}
.about-text {
  flex: 1;
}
.about-text h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}
.about-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-dark);
}
.about-image {
  height: fit-content;
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}
.about-image:hover img {
  transform: scale(1.05);
}
.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 125, 50, 0.3);
  z-index: 1;
}
/* Products Section */
.products-section {
  background-color: var(--light-bg);
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-info {
  padding: 25px;
}
.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.product-info p {
  color: var(--text-light);
  margin-bottom: 20px;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
/* Remedies Section */
.remedies-section {
  background-color: #f5f9f5;
  padding: 100px 0;
}
.remedies-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.remedy-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.remedy-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.remedy-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.remedy-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}
.remedy-card ul {
  text-align: left;
  margin-top: 15px;
  padding-left: 20px;
}
.remedy-card ul li {
  margin-bottom: 8px;
  color: var(--text-light);
}
/* Gallery Section */
.gallery-section {
  background: var(--white);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 125, 50, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}
/* Contact Section */
.contact-section {
  background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('https://images.unsplash.com/photo-1586771107445-d3ca888129ce?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
  color: var(--white);
}
.contact-container {
  display: flex;
  gap: 50px;
}
.contact-info {
  flex: 1;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}
.contact-details {
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.contact-text p, .contact-text a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}
.contact-text a:hover {
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}
.contact-form {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  color: var(--primary-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.submit-btn {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  box-shadow: 0 5px 15px rgba(255, 143, 0, 0.3);
}
.submit-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}
.footer-col p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 10px;
  list-style: none;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  display: block;
}
.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
  list-style: none;
}
.footer-contact i {
  margin-right: 10px;
  color: var(--secondary-color);
}
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--secondary-dark);
  transform: translateY(-5px);
}
/* Animation Classes */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* Responsive Styles */
@media (max-width: 992px) {
.about-content {
  flex-direction: column;
}
.contact-container {
  flex-direction: column;
}
section {
  padding: 70px 0;
}
.hero-content h1 {
  font-size: 3rem;
}
}

@media (max-width: 768px) {
.mobile-menu-btn {
  display: block;
}
nav {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 80%;
  height: calc(100vh - 80px);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: var(--transition);
  z-index: 999;
}
nav.active {
  left: 0;
}
nav ul {
  flex-direction: column;
  padding: 30px;
}
nav ul li {
  margin: 0 0 20px 0;
}
nav ul li a {
  color: var(--text-color);
}
header.scrolled nav {
  top: 70px;
}
.hero {
  min-height: 700px;
}
.hero-content h2 {
  font-size: 2.5rem;
}
.hero-btns {
  flex-direction: column;
}
.section-title h2 {
  font-size: 2rem;
}
}

@media (max-width: 576px) {
.hero-content h1 {
  font-size: 2rem;
}
.section-title h2 {
  font-size: 1.8rem;
}
.about-features {
  grid-template-columns: 1fr;
}
}
