/* ===== RESET & VARIABLES ===== */
:root {
  --primary: #435335;
  --primary-dark: #2C3A2A;
  --primary-light: #5A7A48;
  --secondary: #9F7742;
  --secondary-dark: #7D5C33;
  --secondary-light: #C4A16E;
  --accent: #DFCDD8;
  --dark: #1E2A1A;
  --light: #FDF9F2;
  --white: #FFFFFF;
  --black: #0A0F08;
  --gray: #6B7280;
  --success: #10B981;
  --gradient-1: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-2: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(67,83,53,0.05) 0%, rgba(159,119,66,0.05) 100%);
  --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(159, 119, 66, 0.2);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.2s ease;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .custom-cursor, .custom-cursor-follower {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ===== PRELOADER ===== */


.preloader {
	text-align: center;
	max-width: 20em;
	width: 100%;
}
.preloader__text {
	position: relative;
	height: 1.5em;
}
.preloader__msg {
	animation: msg 0.10s 13.7s linear forwards;
	position: absolute;
	width: 100%;
  font-size: 30px;
  font-style: var(--primary) !important;
  font-weight: 700;
}
#km {
  animation-delay: 13.9s;
  position: absolute;
	width: 100%;
  font-size: 18px;
  font-style: var(--primary) !important;
  margin-top: 50px;
  font-weight: 500;
}
.preloader__msg--last {
	animation-direction: reverse;
	animation-delay: 14s;
	visibility: hidden;
}
.cart {
	display: block;
	margin: 0 auto 1.5em auto;
	width: 8em;
	height: 8em;
}
.cart__lines,
.cart__top,
.cart__wheel1,
.cart__wheel2,
.cart__wheel-stroke {
	animation: cartLines 2s ease-in-out infinite;
}
.cart__lines {
	stroke: var(--primary);
}
.cart__top {
	animation-name: cartTop;
}
.cart__wheel1 {
	animation-name: cartWheel1;
	transform: rotate(-0.25turn);
	transform-origin: 43px 111px;
}
.cart__wheel2 {
	animation-name: cartWheel2;
	transform: rotate(0.25turn);
	transform-origin: 102px 111px;
}
.cart__wheel-stroke {
	animation-name: cartWheelStroke
}
.cart__track {
	stroke: hsla(var(--hue),10%,10%,0.1);
	transition: stroke var(--trans-dur);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: hsl(var(--hue),10%,10%);
		--fg: hsl(var(--hue),10%,90%);
	}
	.cart__track {
		stroke: hsla(var(--hue),10%,90%,0.1);
	}
}

/* Animations */
@keyframes msg {
	from {
		opacity: 1;
		visibility: visible;
	}
	99.9% {
		opacity: 0;
		visibility: visible;
	}
	to {
		opacity: 0;
		visibility: hidden;
	}
}
@keyframes cartLines {
	from,
	to {
		opacity: 0;
	}
	8%,
	92% {
		opacity: 1;
	}
}
@keyframes cartTop {
	from {
		stroke-dashoffset: -338;
	}
	50% {
		stroke-dashoffset: 0;
	}
	to {
		stroke-dashoffset: 338;
	}
}
@keyframes cartWheel1 {
	from {
		transform: rotate(-0.25turn);
	}
	to {
		transform: rotate(2.75turn);
	}
}
@keyframes cartWheel2 {
	from {
		transform: rotate(0.25turn);
	}
	to {
		transform: rotate(3.25turn);
	}
}
@keyframes cartWheelStroke {
	from,
	to {
		stroke-dashoffset: 81.68;
	}
	50% {
		stroke-dashoffset: 40.84;
	}
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 60s ease;
   animation: fadePulse 100s ease-in-out infinite;
}

/* .loader {
  text-align: center;
} */

/* .loader-svg {
  width: 80px;
  height: 80px;
  animation: spinLoader 1.2s ease-in-out infinite;
  margin: 0 auto 20px;
} */
/* 
.loader-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLoader 1.5s ease-in-out infinite;
}

@keyframes spinLoader {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

@keyframes drawLoader {
  0% { stroke-dashoffset: 300; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -300; }
} */
/* 
.loader-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  animation: fadePulse 1.2s ease-in-out infinite;
} */

/* @keyframes fadePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
} */

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--secondary);
  transform: translateY(-50%);
}

.section-subtitle::after {
  content: '';
  position: absolute;
  left: 2.2rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
#mainNavbar {
  padding: 1.2rem 0;
  transition: var(--transition-fast);
  backdrop-filter: blur(0px);
  
}

#mainNavbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 0;
  
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.brand-icon {
  width: 35px;
  height: 35px;
}

.brand-logo {
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-accent {
  color: var(--secondary);
  -webkit-text-fill-color: var(--secondary);
  margin-left: 5px;
}

.nav-link {
  color: var(--secondary-dark) !important;
  font-weight: 500;
  margin: 0 0.8rem;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

.btn-cta-nav {
  background: var(--gradient-2);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 1rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-cta-nav::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: left 0.5s;
}

.btn-cta-nav:hover::before {
  left: 100%;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}


/* Navbar Background */
#mainNavbar {
background: white;
  padding: 10px 0;
  transition: 0.3s;
  z-index: 999;
}

/* Logo Image */
.brand-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Nav Links */
.nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #9F7742;
}
.nav-link {
  
  font-weight: 500;
  margin: 0 0.8rem;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
 
}


/* Button */
.btn-cta-nav {
  background: #9F7742;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-cta-nav:hover {
  background: #435335;
  color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .navbar-collapse {
    
    padding: 15px;
    border-radius: 10px;
  }

  .nav-link {
    margin: 10px 0;
  }


  .brand-logo-img {
    height: 38px;
  }
}

/* SMALL MOBILE */
@media (max-width: 576px) {
  .brand-logo-img {
    height: 32px;
  }
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30,42,26,0.92) 0%, rgba(67,83,53,0.88) 100%);
  z-index: 0;
}

.slide[data-bg="1"] .slide-bg {
  background: linear-gradient(135deg, rgba(30,42,26,0.92) 0%, rgba(67,83,53,0.88) 100%),
              url('/images/bg22.jpg');
  background-size: cover;
  background-position: center;
}

.slide[data-bg="2"] .slide-bg {
  background: linear-gradient(135deg, rgba(30,42,26,0.92) 0%, rgba(67,83,53,0.88) 100%),
              url('/images/bg111.jpg');
  background-size: cover;
  background-position: center;
}

.slide[data-bg="3"] .slide-bg {
  background: linear-gradient(135deg, rgba(30,42,26,0.92) 0%, rgba(67,83,53,0.88) 100%),
              url('/images/bg33.jpg');
  background-size: cover;
  background-position: center;
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100vh;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 110px;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-badge {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-line {
  width: 50px;
  height: 2px;
  background: var(--secondary);
  display: inline-block;
}

.hero-badge span {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-2);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::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: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateX(5px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .hero-visual {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

.floating-leaf {
  position: absolute;
  font-size: 3rem;
  animation: floatAround 4s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.leaf-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.leaf-2 {
  bottom: 30%;
  right: 20%;
  animation-delay: 1s;
  font-size: 4rem;
}

.leaf-3 {
  top: 50%;
  right: 30%;
  animation-delay: 2s;
  font-size: 2.5rem;
}

@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--secondary);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  animation: bounce 2s infinite;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-scroll-indicator span {
  font-size: 0.8rem;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-main {
  overflow: hidden;
  margin-top: 60px;
}

.about-image-main img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image-main img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  color: var(--primary);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--gray);
}

.about-features {
  margin-bottom: 4rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 15px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.feature-item svg {
  flex-shrink: 0;
}

.feature-item h5 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* ===== PRODUCTS SECTION ===== */
/* WRAPPER */
.products-slider {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.products-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease;
}

/* CARD SAME DESIGN */
.product-card-custom {
  min-width: calc(25% - 18.75px);
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-image-custom {
  height: 250px;
  overflow: hidden;
}

.product-image-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.product-card-custom:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.product-content {
  padding: 15px;
  text-align: center;
}

.product-content h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.product-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.product-link-custom {
  text-decoration: none;
  font-weight: 600;
  color: #9f7742;
}

.product-link-custom:hover {
  color: #435335;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-card-custom {
    min-width: calc(50% - 12.5px);
  }
}

@media (max-width: 600px) {
  .product-card-custom {
    min-width: 100%;
  }
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .products-grid-custom {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .products-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .products-grid-custom {
    grid-template-columns: 1fr;
  }
}

/* ================= MOBILE PERFECT (320px – 550px) ================= */

@media (max-width: 550px) {

  .products-track {
    gap: 12px !important;
  }

  .product-card-custom {
    min-width: calc(50% - 6px) !important;
    border-radius: 12px !important;
  }

  /* IMAGE SIZE FIX */
  .product-image-custom {
    height: 140px !important;
  }

  /* CONTENT FIX */
  .product-content {
    padding: 10px !important;
  }

  .product-content h3 {
    font-size: 16px !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }

  .product-content p {
    font-size: 12px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .product-link-custom {
    font-size: 12px !important;
  }
}


/* ===== WHY US SECTION ===== */
.why-us {
  padding: 80px 0;
  background: var(--gradient-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 24px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--white));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.why-card p {
  color: var(--gray);
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: 50px 0;
  background: var(--white);
} 

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 1rem;
  
}

.process-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.process-node:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.node-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.process-node:hover .node-icon {
  transform: scale(1.1) rotate(360deg);
}

.node-icon svg {
  width: 32px;
  height: 32px;
}

.node-content h5 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.node-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

.process-connector {
  flex: 0.15;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  position: relative;
  z-index: 1;
}

/* ===== EXPORT SECTION ===== */
.export {
  padding: 100px 0;
  background: var(--gradient-1);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.export::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1%, transparent 1%);
  background-size: 50px 50px;
  animation: moveBg 30s linear infinite;
}

@keyframes moveBg {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.export-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.export-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.export-features div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.export-features div:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,0.2);
}

.export-visual {
  position: relative;
  text-align: center;
}

.globe-svg {
  width: 200px;
  height: 200px;
  animation: spinGlobe 20s linear infinite;
}

@keyframes spinGlobe {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.export-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.export-stat {
  text-align: center;
}

.export-stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: var(--secondary-light);
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta::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"><path fill="rgba(255,255,255,0.03)" d="M10,50 Q30,30 50,50 T90,50"/></svg>');
  background-size: 30px;
  animation: slideBg 20s linear infinite;
}

@keyframes slideBg {
  0% { background-position: 0 0; }
  100% { background-position: 100px 0; }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--white);
  color: var(--secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-cta-secondary {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
}

.btn-cta-secondary:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--secondary);
}

.footer-tagline {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  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: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.cert-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cert-badges span {
  background: rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-connector {
    width: 2px;
    height: 30px;
    margin: 0 auto;
  }
  
  .process-node {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .export-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-cta-primary,
  .cta-buttons .btn-cta-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .navbar-collapse {
    background: rgba(30, 42, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .nav-link {
    text-align: center;
    padding: 0.8rem !important;
  }
  
  .btn-cta-nav {
    margin: 1rem auto 0;
    display: inline-block;
    width: fit-content;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}





.hero-visual {
  position: relative;
  height: 400px;
}

/* Common Fruit Style */
.floating-fruit {
  position: absolute;
  width: 90px; /* size bada */
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
  animation: float 6s ease-in-out infinite;
}

/* Different Positions */
.fruit-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  width: 210px;
}

.fruit-2 {
  top: 50%;
  right: 10%;
  width: 250px;
  animation-delay: 1s;
}

.fruit-3 {
  bottom: 10%;
  left: 30%;
  width: 200px;
  animation-delay: 2s;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}




.btn-cta-nav i {
  margin-right: 6px;
  font-size: 16px;
}


/* DESKTOP HOVER DROPDOWN */
@media (min-width: 992px) {

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

  }
}

/* MOBILE FIX (Bootstrap default working) */
/* MOBILE FIX */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none; /* default hidden */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .navbar .dropdown-menu.show {
    display: block; /* click pe open */
  }
}

.dropdown-item:hover {
  background: #966a0d !important;
  color: #ffffff !important;
  padding-left: 25px;
}


.navbar .dropdown-menu {
  pointer-events: auto;
}




.products-slider {
  overflow: hidden;
  border: #9F7742 solid 1px;
  border-radius: 50px;
  padding: 20px;
}

/* TRACK */
.products-track {
  display: flex;
  gap: 25px;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-90%); }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}




.products-slider:hover .products-track {
  animation-play-state: paused;
}





@media (min-width: 320px) and (max-width: 550px) {

     .product-image-custom {
        height: 220px !important;
    }
  
}


/* WRAPPER CENTER */
.btn-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

/* BUTTON BASE */
.btn-view-products {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #9F7742, #c49a5a);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* SHINE EFFECT */
.btn-view-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

/* ARROW */
.btn-view-products .arrow {
  transition: transform 0.3s ease;
}

/* HOVER */
.btn-view-products:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Shine move */
.btn-view-products:hover::before {
  left: 100%;
}

/* Arrow move */
.btn-view-products:hover .arrow {
  transform: translateX(5px);
}


/* 📱 MOBILE RESPONSIVE */
@media (max-width: 550px) {
  .btn-view-products {
    padding: 10px 20px;
    font-size: 13px;
  }
}


/* ================= MOBILE (320px – 550px) ================= */
@media (max-width: 550px) {

  .products-slider {
    overflow: visible; /* slider scroll band */
  }

  .products-track {
    display: grid !important; /* flex se grid me convert */
    grid-template-columns: 1fr; /* ek ek product */
    gap: 15px;
    transform: none !important; /* JS slider movement disable */
  }

  .product-card-custom {
    min-width: 100% !important; /* full width */
  }

  /* 👇 IMPORTANT: sirf 5 items show honge */
  .product-card-custom:nth-child(n+6) {
    display: none !important;
  }

}

@media (max-width: 550px) {
.hero-title{
  font-size: 2.5rem !important;

}
.hero-scroll-indicator{
  display: none !important;
}

.hero-description{
  display: none !important;
}
.hero-buttons{
 font-size: 14px !important;
}
.slider-dots{
  display: none !important;
}
#ab{
  margin-left: 0px !important;
}

.btn-cta-nav {
        
        text-align: center;
        margin-top: 20px !important;
        margin-left: 70px !important;
    }

     .nav-link {
        text-align: center;
        padding: 5px !important;
    }
    .navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
    padding: 1px;
}
.brand-logo-img {
        height: 45px;
    }

    .navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: mintcream;
    border-radius: 24px;
}

#rs {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
    padding: 10px;
}
}