:root {
  --primary-green: #2e7d32;
  --dark-green: #1b5e20;
  --light-green: #a5d6a7;
  --accent-green: #4caf50;
  --cream: #fff8e1;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-light: #757575;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  transition: opacity 0.3s ease;
  height: 100vh;
  width: 100vw;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-one {
  height: 80px;
  width: 100px;
  object-fit: contain;
  background: var(--light-green);
  border-radius: 50%;
  padding: 10px;
  transition: var(--transition);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.logo-main {
  font-size: 1.6rem;
  font-weight: 800;
  transition: var(--transition);
}

.logo-sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 1.9rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 25px;
  transition: var(--transition);
  z-index: -1;
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  background: transparent;
  border: none;
  z-index: 1001;
}

.hamburger:hover {
  background: rgba(46, 125, 50, 0.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url(./asset/landing\ image.avif);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lang-btn {
  position: absolute;
  top: -1rem;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-title {
  font-size: 4.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  transition: var(--transition);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-green);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: translateY(-3px);
}

/* Floating Animation */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.float-1 { width: 80px; height: 80px; top: 15%; left: 10%; animation-delay: 0s; }
.float-2 { width: 120px; height: 120px; top: 60%; right: 15%; animation-delay: 2s; }
.float-3 { width: 60px; height: 60px; bottom: 25%; left: 20%; animation-delay: 4s; }
.float-4 { width: 100px; height: 100px; top: 30%; right: 30%; animation-delay: 1s; }
.float-5 { width: 40px; height: 40px; bottom: 40%; right: 10%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-content {
    padding: 1rem 1.5rem;
  }
  
  .hero-title {
    font-size: 3.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .logo-main {
    font-size: 1.4rem;
  }
  
  .logo-one {
    height: 70px;
    width: 85px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .lang-btn {
    top: -0.5rem;
    right: -1rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 8rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    gap: 2rem;
    transition: var(--transition);
    z-index: 1000;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    text-align: left;
  }

  .logo-main {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .logo-sub {
    font-size: 0.8rem;
  }

  .logo-one {
    height: 60px;
    width: 75px;
  }

  .hero {
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .lang-btn {
    position: static;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    min-width: 200px;
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0.8rem;
  }

  .logo-one {
    height: 50px;
    width: 60px;
  }

  .logo-main {
    font-size: 0.9rem;
  }

  .logo-sub {
    font-size: 0.7rem;
  }

  .nav-links {
    width: 280px;
    padding: 6rem 1.5rem 2rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .btn {
    min-width: 160px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .floating-elements {
    display: none;
  }
}

@media (max-width: 360px) {
  .logo-main {
    font-size: 0.8rem;
  }
  
  .logo-one {
    height: 45px;
    width: 55px;
  }
  
  .nav-links {
    width: 250px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn {
    min-width: 140px;
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #1a4f1d;
    --text-dark: #000000;
    --white: #ffffff;
  }
  
  .hero::before {
    background: rgba(0, 0, 0, 0.6);
  }
}
/* About Section */
.about-section {
  background: var(--white);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23A5D6A7' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  background: #eaff000f;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  margin-top: 4rem;
}

.team-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.member-image {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--light-green);
  transition: var(--transition);
}

.member-image:hover {
  border-color: var(--primary-green);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 125, 50, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.member-image:hover .member-overlay {
  opacity: 1;
}

.member-image:hover img {
  transform: scale(1.1);
}


.member-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.member-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Products Section */
.coming-soon {
  background: var(--white);
  position: relative;
  padding-bottom: 7rem;
}

.products-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px var(--shadow-medium);
  border-color: var(--primary-green);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.product-card:hover::before {
  opacity: 0.05;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.product-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.product-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  z-index: 2;
}
/* Kitchen Section */
.kitchen-section {
  margin-top: 4rem;
}

.kitchen-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.kitchen-card {
  background: var(--white);
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.kitchen-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px var(--shadow-medium);
  border-color: var(--primary-green);
}

.kitchen-image-container {
  position: relative;
  width: 100%;
  height: 200px;
    
}

.kitchen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: var(--transition);
}

.kitchen-card:hover .kitchen-image {
  transform: scale(1.05);
}

.kitchen-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: var(--transition);
}

.kitchen-card:hover .kitchen-overlay {
  opacity: 1;
}

.kitchen-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-green);
  margin: 1rem 1.5rem 0.5rem;
}

.kitchen-card p {
  color: var(--text-light);
  margin: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.video{
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 255, 242, 0.679);
  
}

.coming-soon-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.coming-soon-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.coming-soon {
  background: var(--gradient-light);
  padding: 6rem 0;
  min-height: 100vh;
  position: relative;
}

.coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23e8f5e8" opacity="0.3"/></svg>') repeat;
  background-size: 50px 50px;
  opacity: 0.5;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto 2rem;
  border-radius: 2px;
  position: relative;
}

.title-underline::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 4px;
  opacity: 0.3;
}

.coming-soon-content {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.coming-soon-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.coming-soon-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.products-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.product-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  backdrop-filter: blur(10px);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px var(--shadow-medium);
  border-color: var(--primary-green);
}

.product-card:hover::before {
  opacity: 0.05;
}

.product-image-container {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 20px;
  z-index: 2;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 5px 15px var(--shadow-medium);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: var(--transition);
}

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

.product-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  line-height: 1.7;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--light-green);
  border-radius: 15px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  background: var(--accent-green);
  color: var(--white);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.product-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px var(--shadow-light);
}

.product-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--shadow-medium);
}

.stats-section {
  background: var(--white);
  padding: 3rem 0;
  border-radius: 25px;
  box-shadow: 0 15px 35px var(--shadow-light);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  transition: var(--transition);
}

.stat-item:hover {
  background: var(--light-green);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 768px) {
  .container {
      padding: 0 1rem;
  }
  
  .coming-soon {
      padding: 4rem 0;
  }
  
  .products-preview {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .product-card {
      padding: 2rem;
  }
  
  .product-features {
      grid-template-columns: 1fr;
      gap: 0.5rem;
  }
  
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }
}
      /* Contact Section */
      .contact-section {
        background: var(--white);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(135deg, rgba(232, 245, 232, 0.3) 0%, rgba(248, 246, 243, 0.3) 100%);
        z-index: 1;
    }

    .contact-section > .container {
        position: relative;
        z-index: 2;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 1rem;
        position: relative;
    }

    .title-underline {
        width: 60px;
        height: 4px;
        background: var(--gradient-primary);
        margin: 0 auto 1.5rem;
        border-radius: 2px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .info-cards {
        display: grid;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-card {
        background: var(--cream);
        padding: 2rem;
        border-radius: 20px;
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        transition: var(--transition);
        border-left: 4px solid transparent;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-secondary);
        opacity: 0;
        transition: var(--transition);
    }

    .info-card:hover {
        border-left-color: var(--primary-green);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px var(--shadow-medium);
    }

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

    .info-card > * {
        position: relative;
        z-index: 2;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.4rem;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
        transition: var(--transition);
    }

    .info-card:hover .info-icon {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
    }

    .info-details h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-green);
        margin-bottom: 0.75rem;
        letter-spacing: 0.5px;
    }

    .info-details p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    /* Clickable Links */
    .contact-link {
        color: var(--text-light);
        text-decoration: none;
        transition: var(--transition);
        position: relative;
        display: inline-block;
    }

    .contact-link:hover {
        color: var(--primary-green);
        transform: translateX(2px);
    }

    .contact-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: var(--transition);
    }

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

    .phone-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .phone-link i {
        font-size: 0.8rem;
        color: var(--primary-green);
        opacity: 0;
        transition: var(--transition);
    }

    .phone-link:hover i {
        opacity: 1;
    }

    .email-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .email-link i {
        font-size: 0.8rem;
        color: var(--primary-green);
        opacity: 0;
        transition: var(--transition);
    }

    .email-link:hover i {
        opacity: 1;
    }

    .map-container {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px var(--shadow-medium);
        position: relative;
        transition: var(--transition);
    }

    .map-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px var(--shadow-medium);
    }

    .map-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(45, 90, 61, 0.1) 0%, rgba(74, 124, 89, 0.1) 100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 1;
    }

    .map-container:hover::before {
        opacity: 1;
    }

    .contact-map {
        width: 100%;
        height: 350px;
        border: none;
        filter: grayscale(30%) contrast(1.1);
        transition: var(--transition);
    }

    .contact-map:hover {
        filter: grayscale(0%) contrast(1.2);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .info-card {
            padding: 1.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .contact-map {
            height: 250px;
        }
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .info-card {
        animation: fadeInUp 0.6s ease-out;
    }

    .info-card:nth-child(1) { animation-delay: 0.1s; }
    .info-card:nth-child(2) { animation-delay: 0.2s; }
    .info-card:nth-child(3) { animation-delay: 0.3s; }
    .info-card:nth-child(4) { animation-delay: 0.4s; }

    .map-container {
        animation: fadeInUp 0.8s ease-out 0.5s both;
    }
/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-green) 0%, #2d5a3d 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 15c8.284 0 15 6.716 15 15s-6.716 15-15 15-15-6.716-15-15 6.716-15 15-15zm0 2c-7.18 0-13 5.82-13 13s5.82 13 13 13 13-5.82 13-13-5.82-13-13-13z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--light-green));
  border-radius: 2px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo i {
  font-size: 2.5rem;
  color: var(--accent-green);
  animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

.footer-section p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(8px);
  padding-left: 1rem;
}

.footer-links a:hover::before {
  width: 100%;
}

.social-media {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--accent-green), var(--light-green));
  opacity: 0;
  transition: var(--transition);
  border-radius: 50%;
}

.social-link i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: var(--accent-green);
}

.social-link:hover::before {
  opacity: 1;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .title {
    font-size: 3rem;
  }

  .products-preview {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .header-content {
    padding: 1rem;
  }

  .title {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-features,
  .products-preview,
  .team-grid,
  .kitchen-preview {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 180px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-media {
    justify-content: center;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .product-image,
  .kitchen-image-container {
    height: 150px;
  }

  .product-card,
  .kitchen-card {
    padding: 1.5rem;
  }

  .product-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
.vidio {
  width: 500px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;

}

.float-up-down {
  animation: floatUpDown 3s;
}

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

/* 2. Continuous Left-Right Movement */
.float-left-right {
  animation: floatLeftRight 4s ;
}

@keyframes floatLeftRight {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(10px); }
}

/* 3. Continuous Rotation */
.rotate-continuous {
  animation: rotateContinuous 8s linear infinite;
}

@keyframes rotateContinuous {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 4. Pendulum Swing */
.swing-text {
  transform-origin: top center;
  animation: swing 2s ;
}

@keyframes swing {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(5deg); }
  80% { transform: rotate(-5deg); }
}

/* 5. Bouncing Ball Effect */
.bounce-continuous {
  animation: bounceContinuous 2s ;
}

@keyframes bounceContinuous {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

/* 6. Wave Motion */
.wave-text {
  animation: waveMotion 2s ;
}

@keyframes waveMotion {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(5deg); }
  50% { transform: translateY(0px) rotate(0deg); }
  75% { transform: translateY(10px) rotate(-5deg); }
}

/* 7. Pulsing Scale */
.pulse-scale {
  animation: pulseScale 2s ;
}

@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* 8. Diagonal Movement */
.diagonal-move {
  animation: diagonalMove 3s;
}

@keyframes diagonalMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

/* 9. Wiggle Animation */
.wiggle-text {
  animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

/* 10. Orbiting Animation */
.orbit-text {
  animation: orbit 4s linear infinite;
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(30px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
}

/* 11. Breathing Effect */
.breathe-text {
  animation: breathe 3s ;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* 12. Sliding Banner */
.slide-banner {
  animation: slideBanner 8s linear infinite;
}

@keyframes slideBanner {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* 13. Typewriter with Cursor */
.typewriter-moving {
  overflow: hidden;
  border-right: 3px solid var(--primary-green);
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.1em;
  animation: typing 4s steps(40, end) infinite, 
             blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  100% { width: 0 }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--primary-green) }
}

/* 14. Glowing Pulse */
.glow-pulse {
  animation: glowPulse 2s ;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 5px var(--accent-green),
                 0 0 10px var(--accent-green),
                 0 0 15px var(--accent-green);
  }
  50% {
    text-shadow: 0 0 10px var(--accent-green),
                 0 0 20px var(--accent-green),
                 0 0 30px var(--accent-green),
                 0 0 40px var(--accent-green);
  }
}

/* 15. Shake Continuously */
.shake-continuous {
  animation: shakeContinuous 0.5s ;
}

@keyframes shakeContinuous {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* 16. Levitating Text */
.levitate-text {
  animation: levitate 4s ;
}

@keyframes levitate {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-20px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-1deg); }
}

/* 17. Morphing Scale */
.morph-scale {
  animation: morphScale 2s ;
}

@keyframes morphScale {
  0%, 100% { transform: scaleX(1) scaleY(1); }
  50% { transform: scaleX(1.2) scaleY(0.8); }
}

/* 18. Spiral Movement */
.spiral-move {
  animation: spiralMove 3s ;
}

@keyframes spiralMove {
  0% { transform: rotate(0deg) translateX(0px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}


@keyframes elasticBounce {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-15px) scaleY(1.1); }
}

/* 20. Flickering Text */
.flicker-text {
  animation: flicker 0.5s ;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}


  .hero-title {
    animation: floatUpDown 2s ,
              glowPulse 1s ;
    animation-delay: 1s, 0.5s;
  }

  .lang-btn {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding for better size */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
    margin-left: 30px;
  }
  
  .lang-btn:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: scale(1.05); /* Slight zoom effect */
  }
  
  .lang-btn:active {
    background-color: #3d8b40; /* Even darker when clicked */
    transform: scale(0.95); /* Slight shrink on click */
  }
  
  .lang-btn:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3); /* Custom focus ring */
  }
