:root {
  --primary: #2c7a57;
  --primary-dark: #1f5a40;
  --secondary: #f5a623;
  --accent: #4a90e2;
  --light: #f8f9fa;
  --dark: #222;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --shadow: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-hover: 0 12px 30px rgba(0,0,0,0.15);
}

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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  word-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.btn {
  display: inline-block;
  padding: 0.9rem clamp(1rem, 3vw, 2rem);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: clamp(1rem, 2vw, 1.1rem);
  border: none;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-secondary:hover {
  background: #e69500;
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1.2rem 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  z-index: 99;
}

.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links li {
  margin-left: clamp(1rem, 2vw, 2rem);
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
  white-space: nowrap;
}

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

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

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

/* Enhanced Mobile Menu & Navigation */

/* Accessibility Helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Desktop Navigation Enhancements */
.nav-links li a i {
  margin-right: 5px;
  font-size: 0.9em;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.nav-links li a:hover i {
  transform: translateY(-2px);
}

.nav-cta {
  margin-left: 10px;
}

.btn-nav {
  background: var(--primary);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(44, 122, 87, 0.2);
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(44, 122, 87, 0.3);
}

.btn-nav:hover:after {
  display: none;
}

/* Hamburger Button */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 10px;
  outline: none;
  position: relative;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(3px);
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Enhanced Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  overflow-y: auto;
  transform-origin: right center;
}

.mobile-menu.active {
  transform: translateX(-100%);
  animation: menuAppear 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes menuAppear {
  0% {
    opacity: 0;
    transform: translateX(-70%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(-100%) scale(1);
  }
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mobile-logo i {
  margin-right: 8px;
}

.mobile-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-close:hover {
  background: rgba(0,0,0,0.05);
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav {
  padding: 20px 0;
  flex: 1;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  margin: 5px 0;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: calc(0.05s * var(--item-index, 0));
  animation-fill-mode: forwards;
}

.mobile-menu.active .mobile-nav-item {
  transform: translateX(0);
  opacity: 1;
  animation: slideInUp 0.5s calc(0.05s * var(--item-index, 0)) cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-item a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-item a i {
  margin-right: 15px;
  font-size: 1.2rem;
  color: var(--primary);
  width: 24px;
  text-align: center;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav-item a:hover {
  background: rgba(44, 122, 87, 0.05);
  color: var(--primary);
  border-left: 3px solid var(--primary);
}

.mobile-nav-item a:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--primary);
  animation: iconPulse 0.6s infinite alternate;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.2) rotate(5deg); }
}

.mobile-cta {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: 0.3s;
}

.mobile-menu.active .mobile-cta {
  transform: translateY(0);
  opacity: 1;
}

.mobile-shop-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-shop-btn i {
  margin-right: 8px;
}

.mobile-social {
  display: flex;
  justify-content: center;
  padding: 20px;
  gap: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: 0.4s;
}

.mobile-menu.active .mobile-social {
  transform: translateY(0);
  opacity: 1;
}

.mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.mobile-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(44, 122, 87, 0.2);
}

.mobile-menu ul li a:hover {
  color: var(--primary);
  background: rgba(44, 122, 87, 0.05);
}

/* Responsive Media Queries for Navigation */
@media (max-width: 1100px) {
  .nav-links li {
    margin-left: clamp(0.5rem, 1vw, 1.5rem);
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    display: none;
  }
  
  header {
    padding: 1rem 0;
  }
  
  header.scrolled {
    padding: 0.7rem 0;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
    max-width: none;
  }
  
  .mobile-nav-item a {
    padding: 15px 25px;
    font-size: 1.2rem;
  }
  
  .mobile-menu-header {
    padding: 25px 20px;
  }
  
  .mobile-social {
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .logo span {
    font-size: 1.3rem;
  }
  
  .mobile-nav-item a {
    padding: 12px 20px;
  }
  
  .mobile-social a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

.hero-container {
  background: linear-gradient(135deg, #0a1f0a 0%, #1e3c1e 50%, #0d270d 100%);
  color: #fff;
  display: flex;
  min-height: 50vh;
  padding: 40px 5%;
  position: relative;
  z-index: 10;
  max-width: 1600px;
  margin: 80px auto 0;
  width: 100%;
  overflow: hidden;
}

/* Glassmorphism effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Left Content Styles */
.left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(0px, 5vw, 50px);
  position: relative;
  z-index: 2;
}

.tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f0f8f0;
  margin-bottom: 15px;
  font-weight: 600;
  background: linear-gradient(90deg, #c8e6c9, #a5d6a7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 30px;
}

.tagline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(90deg, #c8e6c9, #a5d6a7);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.15;
  background: linear-gradient(90deg, #f0f8f0, #c8e6c9, #81c784);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight {
  position: relative;
  display: inline-block;
  color: white;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(168, 218, 170, 0.3);
  z-index: -1;
  border-radius: 5px;
}

.description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
  color: rgba(240, 248, 240, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-buttons a {
  text-decoration: none;
}

.btn {
  padding: clamp(12px, 2vw, 16px) clamp(25px, 3vw, 35px);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.1rem);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}


.prima-btn {
  background: var(--secondary);
  border: none;
  color: #f0f8f0;
}

.prima-btn:hover::before {
  opacity: 1;
}

.primary-btn {
  background: linear-gradient(90deg, #66bb6a, #43a047);
  border: none;
  color: #f0f8f0;
}

.primary-btn:hover::before {
  opacity: 1;
}

.secondary-btn {
  background: transparent;
  border: 2px solid rgba(200, 230, 201, 0.6);
  color: #e8f5e9;
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background: rgba(200, 230, 201, 0.15);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(102, 187, 106, 0.3);
}

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

/* Right Content Styles */
.right-content {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.carousel-container {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  position: relative;
  padding: 20px;
  perspective: 1200px;
}

.product-link {
  text-decoration: none;
}

.product-carousel {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.slick-list {
  border-radius: 30px;
}

/* Product Cards */
.product-card {
  position: relative;
  height: clamp(350px, 60vw, 450px);
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 30px);
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0 5px;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(90deg, #66bb6a, #43a047);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #e0e0e0;
  z-index: 2;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-meta i {
  color: #66bb6a;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  z-index: 2;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  font-size: 0.85rem;
  color: #e0e0e0;
}

.product-features i {
  color: #66bb6a;
  font-size: 0.8rem;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 1;
  border-radius: 30px;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.1), transparent);
  z-index: 1;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-info {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}

.product-info p {
  margin: 5px 0 10px;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.product-card:hover::after {
  opacity: 1;
}

.product-info {
  position: relative;
  z-index: 2;
  transform: translateZ(30px);
}

.product-name {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #e8f5e9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.product-price {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #c8e6c9;
  margin-bottom: 15px;
  display: inline-block;
  padding: 6px 15px;
  background: rgba(0, 30, 0, 0.4);
  border-radius: 30px;
  border: 1px solid rgba(168, 218, 170, 0.3);
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: rgba(240, 248, 240, 0.9);
}

.product-features li i {
  color: #81c784;
  font-size: clamp(0.9rem, 2vw, 1rem);
  min-width: 20px;
}

/* Adjusted button inside product card */
.product-card .btn {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 25px);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Slick Carousel Controls */
.slick-arrow {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 218, 170, 0.5);
  backdrop-filter: blur(5px);
}

.slick-arrow:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: clamp(18px, 3vw, 24px);
  color: #c8e6c9;
  opacity: 0.8;
}

.slick-prev {
  left: clamp(10px, 3vw, 25px);
}

.slick-prev:before {
  content: "\f053";
}

.slick-next {
  right: clamp(10px, 3vw, 25px);
}

.slick-next:before {
  content: "\f054";
}

.slick-arrow:hover {
  background: rgba(102, 187, 106, 0.3);
  transform: scale(1.1);
}

.slick-dots {
  bottom: 25px;
}

.slick-dots li button:before {
  color: white;
  opacity: 0.5;
  font-size: 12px;
}

.slick-dots li.slick-active button:before {
  color: #81c784;
  opacity: 1;
}

/* Advanced decorative elements */
.decor-element {
  position: absolute;
  z-index: 1;
  filter: blur(30px);
  opacity: 0.7;
}

.circle-1 {
  width: clamp(300px, 60vw, 450px);
  height: clamp(300px, 60vw, 450px);
  background: radial-gradient(circle, #2e7d32 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: float 12s ease-in-out infinite;
}

.circle-2 {
  width: clamp(250px, 50vw, 350px);
  height: clamp(250px, 50vw, 350px);
  background: radial-gradient(circle, #81c784 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation: float 10s ease-in-out infinite 1s;
}

.floating-element {
  position: absolute;
  z-index: 5;
  animation: float 8s ease-in-out infinite;
}

.element-1 {
  top: 15%;
  right: 12%;
  width: clamp(70px, 15vw, 100px);
  height: clamp(70px, 15vw, 100px);
  background: conic-gradient(from 45deg, #2e7d32, #66bb6a, #a5d6a7);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.15;
  animation-delay: 0.5s;
}

.element-2 {
  bottom: 25%;
  left: 8%;
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  background: conic-gradient(from 90deg, #a5d6a7, #66bb6a, #2e7d32);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.15;
  animation-delay: 1s;
}

.element-3 {
  top: 40%;
  right: 25%;
  width: clamp(50px, 10vw, 60px);
  height: clamp(50px, 10vw, 60px);
  background: linear-gradient(45deg, #2e7d32, #66bb6a);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  opacity: 0.2;
  animation-delay: 1.5s;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(5deg); }
  66% { transform: translate(-10px, 10px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Responsive design */
@media (max-width: 1100px) {
  .hero-container {
    flex-direction: column;
    padding-top: 80px;
  }
  
  .left-content {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
    align-items: center;
  }
  
  .right-content {
    justify-content: center;
  }
  
  .carousel-container {
    margin: 0 auto;
  }
  
  h1 {
    font-size: clamp(2.5rem, 6vw, 3.2rem);
  }

  .description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .product-card {
    height: clamp(300px, 70vw, 400px);
    padding: clamp(15px, 3vw, 25px);
  }

  .product-name {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .product-price {
    font-size: clamp(1rem, 3vw, 1.4rem);
  }

  .slick-arrow {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
  }

  .slick-arrow:before {
    font-size: clamp(16px, 3vw, 18px);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 clamp(0.5rem, 3vw, 1.5rem);
  }
  
  h1 {
    font-size: clamp(1.8rem, 6vw, 2rem);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .product-card {
    height: clamp(280px, 75vw, 350px);
    padding: clamp(10px, 3vw, 20px);
  }

  .product-name {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .product-price {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }

  .tagline {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }

  .btn {
    padding: clamp(10px, 3vw, 14px) clamp(20px, 4vw, 30px);
    font-size: clamp(0.9rem, 3vw, 1rem);
    width: 100%;
    justify-content: center;
  }
  
  .hero-container {
    padding: 20px clamp(1rem, 3vw, 5%);
  }
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  transform: translateY(-100%);
  transition: var(--transition);
  z-index: -1;
}

.feature-card:hover:before {
  transform: translateY(0);
  height: 100%;
}

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

.feature-card:hover .feature-icon {
  color: white;
  background: transparent;
  transform: scale(1.1);
}

.feature-card:hover h3, 
.feature-card:hover p {
  color: white;
}

.feature-icon {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  background: rgba(44, 122, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  transition: var(--transition);
}

.feature-card h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Testimonials */
#testimonials {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#testimonials h2:after {
  background: var(--secondary);
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  margin: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 2vw, 1rem);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
}

.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-size: clamp(2.5rem, 6vw, 4rem);
  position: absolute;
  opacity: 0.2;
  font-family: serif;
}

.testimonial-text:before {
  top: -30px;
  left: -20px;
}

.testimonial-text:after {
  bottom: -50px;
  right: -20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--secondary);
}

.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
}

.slick-dots li.slick-active button:before {
  color: var(--secondary);
}

/* How It Works */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  z-index: 1;
  overflow: hidden;
}

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

.step-card:hover:before {
  height: 100%;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.step-card:hover .step-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.step-card:hover h3,
.step-card:hover p {
  color: white;
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: rgba(44, 122, 87, 0.1);
  transition: var(--transition);
}

.step-card:hover .step-number {
  color: rgba(255, 255, 255, 0.2);
}

.step-icon {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  background: rgba(44, 122, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  transition: var(--transition);
}

/* Vendor and Customer Sections */
.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 3rem;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  min-width: min(100%, 50%);
}

.split-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: clamp(250px, 40vw, 400px);
  background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 300px);
}

.split-image .icon-container {
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(255, 255, 255, 0.2);
  animation: pulse 3s infinite;
}

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

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.8rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.benefits-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(25px, 5vw, 30px);
  height: clamp(25px, 5vw, 30px);
  background: rgba(44, 122, 87, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
}

/* Responsive Design */
@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
    gap: 2rem;
  }
  
  .split-section.reverse {
    flex-direction: column;
  }
  
  .split-content, 
  .split-image {
    width: 100%;
    flex: none;
  }
  
  .split-image {
    height: clamp(250px, 50vw, 300px);
    order: -1;
  }
  
  .split-section.reverse .split-image {
    order: -1;
  }
}

/* Youth Empowerment */
#youth-empowerment {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.talent-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.talent-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.talent-header {
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.talent-body {
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.talent-icon {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-form {
  flex: 1;
  min-width: min(100%, 400px);
  background: white;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-info {
  flex: 1;
  min-width: min(100%, 400px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-control {
  width: 100%;
  padding: clamp(0.8rem, 2vw, 1rem);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 122, 87, 0.2);
}

.contact-details {
  background: white;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  background: rgba(44, 122, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--primary);
  margin-right: 1rem;
  flex-shrink: 0;
}

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

.social-link {
  width: clamp(35px, 8vw, 45px);
  height: clamp(35px, 8vw, 45px);
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-5px);
  background: var(--primary-dark);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.footer-column {
  flex: 1;
  min-width: min(100%, 250px);
}

.footer-column h3 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Welcome Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.welcome-modal {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: min(500px, 90vw);
  padding: clamp(1.2rem, 3vw, 2rem);
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .welcome-modal {
  transform: translateY(0);
}

.welcome-modal h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
}

.welcome-modal h2:after {
  display: none;
}

.welcome-modal p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 1rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: clamp(1rem, 3vw, 1.2rem);
  cursor: pointer;
  color: var(--gray);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.modal-icon {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--primary);
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.modal-btn {
  margin-top: 1.5rem;
}

/* Enhanced Youth Program Modal */
.youth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.youth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.youth-form-container {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: min(450px, 90vw);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.youth-modal-overlay.active .youth-form-container {
  transform: translateY(0);
}

.youth-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
  width: clamp(35px, 8vw, 40px);
  height: clamp(35px, 8vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.youth-modal-close:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
}

.youth-form-title {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  color: var(--primary);
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* Form Styles */
.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #555;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field textarea {
  width: 100%;
  padding: clamp(0.6rem, 2vw, 0.7rem);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 122, 87, 0.1);
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

/* Checkbox Styles */
.interest-options {
  display: grid;
  gap: 0.6rem;
}

.interest-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  position: relative;
  padding-left: 30px;
  min-height: 24px;
}

.interest-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #f8f8f8;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}

.interest-checkbox:hover .checkmark {
  background-color: #eee;
}

.interest-checkbox input:checked ~ .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.interest-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Submit Button */
.submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: clamp(0.7rem, 2vw, 0.8rem);
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .youth-form-container {
    padding: clamp(1rem, 3vw, 1.5rem) clamp(0.8rem, 2vw, 1rem);
    max-width: 95%;
  }
  
  .youth-form-title {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
  }
  
  .form-field label {
    font-size: clamp(0.75rem, 3vw, 0.85rem);
  }
  
  .interest-checkbox {
    font-size: clamp(0.75rem, 3vw, 0.85rem);
  }
  
  .submit-btn {
    padding: clamp(0.6rem, 2vw, 0.7rem);
    font-size: clamp(0.8rem, 3vw, 0.9rem);
  }
}




.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-status {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

input.error, select.error, textarea.error {
    border-color: #dc3545;
}

 .contact-item li {
            list-style: none;
            margin-bottom: 5px;
        }
        
        .contact-item a {
            text-decoration: none;
            color: #333;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        /* Advanced Animations */
        .hamburger div {
          transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }
        
        .hamburger:hover div:nth-child(1) {
          transform: translateY(-2px);
        }
        
        .hamburger:hover div:nth-child(3) {
          transform: translateY(2px);
        }
        
        .mobile-cta {
          transition: all 0.3s ease;
          overflow: hidden;
          position: relative;
        }
        
        .mobile-cta::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: all 0.6s ease;
        }
        
        .mobile-cta:hover::before {
          left: 100%;
        }
        
        .mobile-social a {
          transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }
        