/* ================= ROOT VARIABLES - NEW COLOR SCHEME ================= */
:root {
  /* Primary Colors - Fresh Vibrant Greens */
  --primary-green: #10B981;
  --primary-teal: #14B8A6;
  --primary-dark: #047857;
  --primary-light: #6EE7B7;
  
  /* Accent Colors - Warm & Energetic */
  --accent-orange: #F97316;
  --accent-amber: #F59E0B;
  --accent-red: #EF4444;
  
  /* Neutral Colors */
  --dark-navy: #1E293B;
  --dark-gray: #334155;
  --light-gray: #F8FAFC;
  --cream: #FFFBEB;
  --white: #FFFFFF;
  
  /* Gradient Combinations */
  --gradient-primary: linear-gradient(135deg, #10B981 0%, #14B8A6 100%);
  --gradient-warm: linear-gradient(135deg, #F97316 0%, #F59E0B 100%);
  --gradient-cool: linear-gradient(135deg, #14B8A6 0%, #06B6D4 100%);
  --gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(16, 185, 129, 0.1);
  --shadow-md: 0 8px 24px rgba(16, 185, 129, 0.15);
  --shadow-lg: 0 20px 50px rgba(16, 185, 129, 0.2);
  --shadow-xl: 0 30px 70px rgba(16, 185, 129, 0.25);
}

body {
  padding-top: 88px;
  font-family: 'Inter', 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFC 100%);
  color: var(--dark-gray);
}

/* ================= NAVBAR - ENHANCED PROFESSIONAL ================= */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 
    0 4px 24px rgba(16, 185, 129, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 -1px 0 rgba(16, 185, 129, 0.1);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-brand {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #10B981 0%, #14B8A6 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
  display: inline-block;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #14B8A6);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-brand:hover {
  transform: scale(1.05) translateZ(10px);
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.navbar-brand:hover::after {
  width: 100%;
}

/* Navigation Items Container */
.navbar-nav {
  gap: 0.25rem;
  align-items: center;
}

.nav-item {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  animation: fadeInSlide 0.5s ease-out backwards;
}

/* Staggered animation for menu items */
.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.15s; }
.nav-item:nth-child(3) { animation-delay: 0.2s; }
.nav-item:nth-child(4) { animation-delay: 0.25s; }
.nav-item:nth-child(5) { animation-delay: 0.3s; }
.nav-item:nth-child(6) { animation-delay: 0.35s; }
.nav-item:nth-child(7) { animation-delay: 0.4s; }
.nav-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Navigation Links */
.nav-link {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  padding: 0.65rem 1.1rem !important;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
  color: var(--dark-navy) !important;
  border-radius: 10px;
  background: transparent;
  text-transform: capitalize;
  white-space: nowrap;
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Active Link State */
.nav-link.active {
  color: white !important;
  background: var(--gradient-primary);
  font-weight: 700;
  border: 1.5px solid rgba(16, 185, 129, 0.6);
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link.active::after {
  display: none;
}

/* Hover State */
.nav-link:hover {
  transform: translateY(-2px);
  color: var(--primary-green) !important;
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 
    0 4px 8px rgba(16, 185, 129, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.05);
  background: rgba(16, 185, 129, 0.08);
}

.nav-link:not(.active):hover::after {
  width: 70%;
}

.nav-link:active {
  transform: translateY(0);
}

/* Menu Item Visual Separators (Desktop Only) */
@media (min-width: 992px) {
  .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.15rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.2), transparent);
    opacity: 0.5;
  }
  
  .nav-item:hover::after {
    opacity: 0;
  }
}

/* Dropdown indicator for future use */
.nav-link.dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: 0.1em;
}

/* Contact Button in Navbar - PREMIUM */
.navbar .btn-success {
  padding: 0.65rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  border-radius: 12px;
  background: var(--gradient-warm) !important;
  border: none;
  box-shadow: 
    0 4px 16px rgba(249, 115, 22, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white !important;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
}

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

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

.navbar .btn-success:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 28px rgba(249, 115, 22, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: brightness(1.12) saturate(1.1);
}

.navbar .btn-success:active {
  transform: translateY(-1px) scale(1.02);
}

/* Mobile menu alignment - ENHANCED */
@media (max-width: 991px) {
  .navbar {
    padding: 0.8rem 0;
  }
  
  .navbar-brand {
    font-size: 1.15rem;
  }
  
  .navbar-collapse {
    background: white;
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 
      0 8px 32px rgba(16, 185, 129, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .nav-item {
    margin: 0;
    width: 100%;
  }
  
  .nav-link {
    padding: 0.85rem 1.2rem !important;
    font-size: 1rem;
    border-radius: 12px;
    text-align: left;
    display: block;
    width: 100%;
  }
  
  .nav-link.active {
    margin-bottom: 0.25rem;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .navbar .btn-success {
    margin-top: 1rem;
    margin-left: 0 !important;
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }
  
  /* Mobile Toggle Button */
  .navbar-toggler {
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    background: rgba(16, 185, 129, 0.05);
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
  }
  
  .navbar-toggler:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--primary-teal);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2310B981' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* HERO - REDESIGNED */
.hero {
  min-height: 95vh;
  background: 
    linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(20, 184, 166, 0.92) 50%, rgba(6, 182, 212, 0.9) 100%),
    url('../images/back_groung_image.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: movePattern 20s linear infinite;
  pointer-events: none;
}

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

.hero h1, .hero p {
  transform-style: preserve-3d;
  animation: floatIn 1s ease-out;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) translateZ(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

/* ================= TAGLINE ROTATION ================= */
.tagline-container {
  position: relative;
  height: 35px;
  overflow: hidden;
}

.tagline-text {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin: 0;
}

.tagline-text.active {
  opacity: 1;
  transform: translateY(0);
  animation: taglineFade 9s ease-in-out infinite;
}

.tagline-text:nth-child(2) {
  animation-delay: 3s;
}

.tagline-text:nth-child(3) {
  animation-delay: 6s;
}

@keyframes taglineFade {
  0%, 30% { 
    opacity: 1;
    transform: translateY(0);
  }
  33%, 100% { 
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* COLORS - NEW PALETTE */
.bg-light-green {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDFA 100%);
  position: relative;
}

.bg-light {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%) !important;
}

.text-success {
  color: var(--primary-green) !important;
}

.btn-success {
  background: var(--gradient-primary) !important;
  border: none !important;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  color: white !important;
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #0D9488 100%) !important;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  background: white !important;
  color: var(--primary-green) !important;
  border-color: white !important;
}

/* ================= GLASS CARD 3D - REDESIGNED ================= */
.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(236, 253, 245, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow: 
    var(--shadow-lg),
    inset 0 2px 4px rgba(255,255,255,0.8);
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 
    var(--shadow-xl),
    inset 0 2px 4px rgba(255,255,255,0.9);
  border-color: rgba(16, 185, 129, 0.4);
}

/* ================= PRODUCT CARDS 3D - REDESIGNED ================= */
.stylish-card {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(16, 185, 129, 0.1);
  transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
}

.stylish-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stylish-card:hover::before {
  opacity: 0.08;
}

.stylish-card:hover {
  transform: translateY(-15px) translateZ(20px) rotateX(3deg);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 2px rgba(16, 185, 129, 0.3);
}

/* CTA - REDESIGNED */
.cta-section {
  background: var(--gradient-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shine 4s infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

/* ================= PAGE HEADER 3D - REDESIGNED ================= */
.page-header {
  padding: 140px 0 90px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-header h1 {
  text-shadow: 
    0 10px 30px rgba(0,0,0,0.3),
    0 5px 15px rgba(0,0,0,0.2);
  transform-style: preserve-3d;
  animation: headerFloat 1s ease-out;
}

@keyframes headerFloat {
  from {
    opacity: 0;
    transform: translateY(50px) translateZ(-30px) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(0) rotateX(0);
  }
}

/* ================= HERO STATS ================= */
.hero-stat {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stat h2 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.hero-stat p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.bg-light-green {
  background-color: #E9F7EF;
}

/* ================= CUSTOMER & ACCREDITATION CARDS 3D - REDESIGNED ================= */
.customer-card,
.accreditation-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0FDFA 100%);
  padding: 35px;
  border-radius: 24px;
  box-shadow: 
    var(--shadow-md),
    0 0 0 1px rgba(16, 185, 129, 0.1);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.customer-card::after,
.accreditation-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.customer-card:hover::after,
.accreditation-card:hover::after {
  transform: scale(1);
}

.customer-card:hover,
.accreditation-card:hover {
  transform: translateY(-12px) translateZ(15px) rotateX(5deg);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 2px var(--primary-light);
  border-color: var(--primary-light);
}

/* ================= STYLISH IMAGE 3D ================= */
.stylish-img {
  box-shadow: 
    0 20px 50px rgba(0,0,0,.15),
    0 10px 25px rgba(0,0,0,.1);
  transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 15px;
}

.stylish-img:hover {
  transform: scale(1.05) translateZ(20px) rotateY(5deg);
  box-shadow: 
    0 30px 70px rgba(0,0,0,.2),
    0 15px 35px rgba(0,0,0,.15);
}

/* ================= PRODUCTS PAGE 3D ================= */

/* Product box (image + name) - REDESIGNED */
.product-box {
  background: linear-gradient(135deg, #ffffff 0%, #ECFDF5 100%);
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 
    var(--shadow-md),
    inset 0 2px 4px rgba(255,255,255,0.9);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  transform-style: preserve-3d;
  position: relative;
  border: 2px solid rgba(16, 185, 129, 0.15);
}

.product-box::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.product-box:hover::before {
  opacity: 0.15;
}

.product-box img {
  border-radius: 18px;
  max-height: 200px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.product-box:hover img {
  transform: translateZ(15px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.product-box h6 {
  margin-top: 18px;
  font-weight: 700;
  color: var(--dark-navy);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.product-box:hover h6 {
  transform: translateZ(10px);
  color: var(--primary-green);
}

.product-box:hover {
  transform: translateY(-12px) translateZ(20px) rotateX(5deg);
  box-shadow: 
    var(--shadow-xl),
    inset 0 2px 4px rgba(255,255,255,0.9);
  border-color: var(--primary-green);
}

/* ================= TEXT-ONLY PRODUCT LIST 3D - REDESIGNED ================= */
.product-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  perspective: 1000px;
}

.product-list li {
  background: linear-gradient(135deg, #ffffff 0%, #F0FDFA 100%);
  padding: 20px 25px;
  margin-bottom: 16px;
  border-left: 5px solid var(--primary-green);
  border-radius: 16px;
  box-shadow: 
    var(--shadow-sm),
    inset 0 1px 2px rgba(255,255,255,0.7);
  font-weight: 600;
  color: var(--dark-navy);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.product-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
}

.product-list li::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-orange);
  font-weight: bold;
  font-size: 1.2rem;
}

.product-list li:hover::before {
  width: 100%;
  opacity: 0.08;
}

.product-list li:hover::after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.product-list li:hover {
  transform: translateX(12px) translateZ(10px) rotateY(2deg);
  box-shadow: 
    var(--shadow-lg),
    inset 0 1px 2px rgba(255,255,255,0.7);
  border-left-width: 5px;
  color: var(--primary-green);
}

/* Spray Dried Categories - Compact Layout */
#spray-dried {
  position: relative;
  background-image: url('../images/spray_dried_BG.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#spray-dried::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

#spray-dried > .container {
  position: relative;
  z-index: 1;
}

#hpd {
  position: relative;
  background-image: url('../images/HPD_BG.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#freeze-dried {
  position: relative;
  background-image: url('../images/freeze_dried_bg.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#freeze-dried::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

#freeze-dried > .container {
  position: relative;
  z-index: 1;
}

#frozen {
  position: relative;
  background-image: url('../images/frozen_fruit_pulp_bg.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#frozen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

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

#hpd::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

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

#spray-dried .spray-category,
#hpd .hpd-category,
#freeze-dried .fd-category,
#frozen .frozen-category {
  padding: 16px 12px;
  border-radius: 14px;
}

#spray-dried .spray-category {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

#spray-dried .spray-category h5,
#hpd .hpd-category h5,
#freeze-dried .fd-category h5,
#frozen .frozen-category h5 {
  font-size: 0.95rem;
  margin-bottom: 10px !important;
}

#spray-dried .spray-category .product-list,
#hpd .hpd-category .product-list,
#freeze-dried .fd-category .product-list,
#frozen .frozen-category .product-list {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

#spray-dried .spray-category .product-list li,
#hpd .hpd-category .product-list li,
#freeze-dried .fd-category .product-list li,
#frozen .frozen-category .product-list li {
  padding: 8px 10px;
  margin-bottom: 6px;
  font-size: 0.8rem;
  border-left-width: 4px;
  border-radius: 12px;
}

#spray-dried .spray-category .product-list li {
  background: rgba(255, 255, 255, 0.18);
}

#spray-dried .spray-category.spray-fruits {
  background: transparent;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.2);
}

#spray-dried .spray-category.spray-fruits .product-list li {
  background: transparent;
}

#spray-dried .spray-category .product-list li::after,
#hpd .hpd-category .product-list li::after,
#freeze-dried .fd-category .product-list li::after,
#frozen .frozen-category .product-list li::after {
  right: 10px;
  font-size: 1rem;
}

#spray-dried .spray-app-list,
#hpd .hpd-app-list,
#freeze-dried .fd-app-list,
#frozen .frozen-app-list {
  max-height: none;
  overflow-y: visible;
  padding-right: 0;
  column-count: 1;
  column-gap: 14px;
}

#frozen .frozen-category .frozen-app-list {
  max-height: none;
  overflow-y: visible;
}

#spray-dried .spray-app-list li,
#hpd .hpd-app-list li,
#freeze-dried .fd-app-list li,
#frozen .frozen-app-list li {
  break-inside: avoid;
}

@media (min-width: 768px) {
  #spray-dried .spray-app-list,
  #hpd .hpd-app-list,
  #freeze-dried .fd-app-list,
  #frozen .frozen-app-list {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  #spray-dried .spray-app-list,
  #hpd .hpd-app-list,
  #freeze-dried .fd-app-list,
  #frozen .frozen-app-list {
    column-count: 3;
  }
}

/* ================= BUTTONS 3D - REDESIGNED ================= */
.btn {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 30px;
  padding: 12px 32px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 320px;
  height: 320px;
}

.btn:hover {
  transform: translateY(-4px) translateZ(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

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

.btn-lg {
  padding: 16px 48px;
  font-size: 1.1rem;
  border-radius: 35px;
}

/* ================= PRODUCT SHOWCASE CARD - REDESIGNED ================= */
.product-showcase-card {
  background: linear-gradient(135deg, white 0%, #F0FDFA 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  border: 2px solid rgba(16, 185, 129, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-showcase-card:hover {
  transform: translateY(-12px) translateZ(10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.product-showcase-card img {
  height: 460px;
  object-fit: contain;
  object-position: center;
  width: 100%;
  display: block;
  transition: none;
}

.product-showcase-card .showcase-spray-img {
  object-fit: contain;
  object-position: center;
}

.product-showcase-card .showcase-dehydrated-img {
  object-fit: contain;
  object-position: center;
}

.product-showcase-card:hover img {
  transform: none;
}

.product-showcase-card:hover .showcase-spray-img {
  transform: none;
}

.product-showcase-card:hover .showcase-dehydrated-img {
  transform: none;
}

/* ================= FACILITY IMAGE CARD ================= */
.facility-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
  transition: all 0.3s ease;
  height: 250px;
}

.facility-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.facility-image-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.facility-image-card .overlay h5 {
  color: white;
  margin: 0;
  font-weight: 600;
}

.facility-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

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

.facility-image-card:hover .overlay {
  transform: translateY(0);
}

/* ================= TECH DETAIL WITH IMAGES ================= */
.tech-detail-image-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.2);
  transition: all 0.4s ease;
  border: 2px solid rgba(16, 185, 129, 0.15);
}

.tech-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.infra-tech-section .tech-detail-image-wrapper {
  height: 420px;
}

@media (max-width: 767.98px) {
  .infra-tech-section .tech-detail-image-wrapper {
    height: 320px;
  }
}

.tech-detail-card:hover .tech-detail-image-wrapper {
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
  border-color: var(--primary-green);
  transform: scale(1.03);
}

.tech-detail-card:hover .tech-detail-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* ================= FOOTER 3D ================= */
footer {
  position: relative;
  box-shadow: 0 -10px 30px rgba(0,0,0,.1);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

/* ================= SCROLL ANIMATIONS - ENHANCED ================= */

/* Base state for all animated elements */
.animate-on-scroll {
  opacity: 0;
  transition: none;
}

.animate-on-scroll.animated {
  opacity: 1;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation types */
.fade-up {
  animation-name: fadeInUp;
}

.fade-down {
  animation-name: fadeInDown;
}

.fade-left {
  animation-name: fadeInLeft;
}

.fade-right {
  animation-name: fadeInRight;
}

.zoom-in {
  animation-name: zoomIn;
}

.zoom-in-rotate {
  animation-name: zoomInRotate;
}

.slide-up {
  animation-name: slideUp;
}

.bounce-in {
  animation-name: bounceIn;
}

.flip-in {
  animation-name: flipIn;
}

/* Delay classes for staggered animations */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInRotate {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= ANIMATED GRADIENT BACKGROUNDS - REDESIGNED ================= */
.gradient-animate {
  background: linear-gradient(-45deg, var(--primary-green), var(--primary-teal), var(--accent-orange), var(--primary-light));
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================= FLOATING BADGE ANIMATION ================= */
.badge {
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(27, 138, 90, 0.4);
  animation: pulse 0.6s ease-in-out infinite;
}

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

/* ================= GLOWING EFFECT ================= */
.btn-success, .btn-success:hover {
  position: relative;
  overflow: hidden;
}

.btn-success::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.btn-success:hover::after {
  opacity: 1;
  animation: pulse 2s infinite;
}

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

/* ================= MAGNETIC HOVER EFFECT ================= */
.stylish-card, .product-box, .customer-card, .accreditation-card {
  cursor: pointer;
}

/* ================= TEXT GRADIENT - REDESIGNED ================= */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: textShine 3s linear infinite;
}

@keyframes textShine {
  to { background-position: 200% center; }
}

/* ================= TILT EFFECT ON IMAGES ================= */
.product-box img, .stylish-img {
  transform-origin: center;
}

/* ================= BORDER GLOW ANIMATION - REDESIGNED ================= */
@keyframes borderGlow {
  0%, 100% {
    box-shadow: 
      var(--shadow-md),
      0 0 0 rgba(16, 185, 129, 0);
  }
  50% {
    box-shadow: 
      var(--shadow-md),
      0 0 35px rgba(16, 185, 129, 0.5);
  }
}

.product-box:hover, .stylish-card:hover {
  animation: borderGlow 2s infinite;
}

/* ================= SECTION DIVIDERS ================= */
section {
  position: relative;
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #1B8A5A, transparent);
  border-radius: 2px;
}

section.bg-light-green::after {
  display: none;
}

/* ================= SCROLL PROGRESS BAR - REDESIGNED ================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6);
}

/* ================= PARALLAX EFFECT ================= */
.parallax-section {
  position: relative;
  overflow: hidden;
}

/* ================= LOADING SKELETON ================= */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* ================= COUNTER ANIMATION ================= */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RIPPLE EFFECT ================= */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:active::before {
  width: 300px;
  height: 300px;
}

/* ================= ZOOM IMAGE ON HOVER ================= */
.image-zoom-container {
  overflow: hidden;
  border-radius: 15px;
}

.image-zoom-container img {
  transition: transform 0.6s ease;
}

.image-zoom-container:hover img {
  transform: scale(1.15);
}

/* ================= TESTIMONIAL QUOTE MARKS ================= */
.testimonial {
  position: relative;
  padding: 30px;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 100px;
  color: rgba(27,138,90,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ================= GRADIENT BORDER CARDS ================= */
.gradient-border {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #1B8A5A, #2ECC71, #27AE60, #0F5132);
  background-size: 300% 300%;
  animation: gradientRotate 6s ease infinite;
}

.gradient-border-inner {
  background: white;
  border-radius: 18px;
  padding: 25px;
}

@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================= ICON BOUNCE ================= */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.bounce-icon:hover {
  animation: bounce 1s;
}

/* ================= TYPEWRITER EFFECT ================= */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* ================= STAGGER ANIMATIONS FOR LISTS ================= */
.product-box:nth-child(1) { animation-delay: 0.1s; }
.product-box:nth-child(2) { animation-delay: 0.2s; }
.product-box:nth-child(3) { animation-delay: 0.3s; }
.product-box:nth-child(4) { animation-delay: 0.4s; }
.product-box:nth-child(5) { animation-delay: 0.5s; }
.product-box:nth-child(6) { animation-delay: 0.6s; }

/* ================= SHINE EFFECT ON CARDS ================= */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shineMove 3s infinite;
}

@keyframes shineMove {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ================= COLOR CHANGING HEADINGS ================= */
@keyframes colorChange {
  0%, 100% { color: #1B8A5A; }
  33% { color: #2ECC71; }
  66% { color: #27AE60; }
}

h1, h2, h3 {
  transition: color 0.5s ease;
}

/* ================= GLASS MORPHISM ENHANCED ================= */
.glass-morphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* ================= NEON GLOW TEXT ================= */
.neon-text {
  color: #1B8A5A;
  text-shadow:
    0 0 5px rgba(27, 138, 90, 0.5),
    0 0 10px rgba(27, 138, 90, 0.5),
    0 0 20px rgba(27, 138, 90, 0.5),
    0 0 40px rgba(27, 138, 90, 0.5);
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 5px rgba(27, 138, 90, 0.5),
      0 0 10px rgba(27, 138, 90, 0.5),
      0 0 20px rgba(27, 138, 90, 0.5),
      0 0 40px rgba(27, 138, 90, 0.5);
  }
  50% {
    text-shadow:
      0 0 10px rgba(27, 138, 90, 0.8),
      0 0 20px rgba(27, 138, 90, 0.8),
      0 0 30px rgba(27, 138, 90, 0.8),
      0 0 60px rgba(27, 138, 90, 0.8);
  }
}

/* ================= MODERN FORM DESIGN ================= */

.modern-form-container {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.1),
    0 10px 30px rgba(27,138,90,0.05);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1B8A5A, #2ECC71, #27AE60, #1B8A5A);
  background-size: 200% auto;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  to { background-position: 200% center; }
}

/* ================= MODERN INPUT WRAPPER ================= */

.modern-input-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.modern-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.modern-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  background: #f8f9fa;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
}

.modern-input:focus {
  background: #ffffff;
  border-color: #1B8A5A;
  transform: translateY(-2px);
  box-shadow: 
    0 10px 30px rgba(27,138,90,0.1),
    0 4px 8px rgba(0,0,0,0.05);
}

.modern-input:focus + .input-line {
  width: 100%;
}

.modern-input:focus ~ .modern-label {
  color: #1B8A5A;
}

/* ================= ANIMATED UNDERLINE ================= */

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #1B8A5A, #2ECC71);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* ================= TEXTAREA STYLES ================= */

.modern-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* ================= MODERN SUBMIT BUTTON ================= */

.modern-submit-btn {
  position: relative;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #1B8A5A, #27AE60, #2ECC71);
  background-size: 200% auto;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 
    0 15px 35px rgba(27,138,90,0.3),
    0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
}

.modern-submit-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 20px 45px rgba(27,138,90,0.4),
    0 10px 25px rgba(0,0,0,0.15);
  background-position: right center;
}

.modern-submit-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-icon {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.modern-submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* ================= BUTTON SHINE EFFECT ================= */

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.modern-submit-btn:hover .btn-shine {
  left: 100%;
}

/* ================= FLOATING BACKGROUND SHAPES ================= */

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,138,90,0.1), rgba(46,204,113,0.1));
  animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* ================= INPUT FOCUS EFFECTS ================= */

.modern-input:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

/* ================= VALIDATION STATES ================= */

.modern-input:valid:not(:placeholder-shown) {
  border-color: #2ECC71;
  background: #f0fdf4;
}

.modern-input:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
  background: #fef2f2;
}

/* ================= INPUT ICONS IN LABELS ================= */

.modern-label {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= STAGGER ANIMATION ================= */

.modern-input-wrapper:nth-child(1) { animation: fadeInLeft 0.6s ease 0.1s backwards; }
.modern-input-wrapper:nth-child(2) { animation: fadeInRight 0.6s ease 0.2s backwards; }
.modern-input-wrapper:nth-child(3) { animation: fadeInLeft 0.6s ease 0.3s backwards; }
.modern-input-wrapper:nth-child(4) { animation: fadeInRight 0.6s ease 0.4s backwards; }
.modern-input-wrapper:nth-child(5) { animation: fadeInLeft 0.6s ease 0.5s backwards; }
.modern-input-wrapper:nth-child(6) { animation: fadeInRight 0.6s ease 0.6s backwards; }
.modern-input-wrapper:nth-child(7) { animation: fadeInUp 0.6s ease 0.7s backwards; }
.modern-input-wrapper:nth-child(8) { animation: fadeInUp 0.6s ease 0.8s backwards; }

/* ================= BADGE PULSE ================= */

.badge {
  box-shadow: 0 4px 15px rgba(27,138,90,0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(27,138,90,0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(27,138,90,0.4);
  }
}

/* ================= RIPPLE CLICK EFFECT ================= */

.modern-submit-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.modern-submit-btn:active::after {
  width: 300px;
  height: 300px;
}

/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 768px) {
  .modern-form-container {
    padding: 40px 25px;
    border-radius: 20px;
  }
  
  .modern-submit-btn {
    width: 100%;
    padding: 16px 40px;
  }
  
  .modern-input {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .modern-label {
    font-size: 13px;
  }
}

/* ================= KEY STRENGTHS 3D EFFECTS ================= */
.key-strengths-section {
  perspective: 1000px;
}

.strength-card {
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.strength-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 138, 90, 0.03), rgba(15, 81, 50, 0.06));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.strength-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  transform: translateZ(1px);
  pointer-events: none;
}

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

.strength-card:hover::after {
  opacity: 0.3;
}

.strength-card:hover {
  transform: translateY(-20px) translateZ(40px) rotateX(8deg) scale(1.02);
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.15),
    0 15px 35px rgba(27, 138, 90, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(255, 255, 255, 0.3);
}

.strength-card .badge {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
  box-shadow: 
    0 8px 20px rgba(27, 138, 90, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.strength-card:hover .badge {
  transform: translateZ(60px) scale(1.15) rotateY(360deg);
  box-shadow: 
    0 15px 40px rgba(27, 138, 90, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.strength-card h5 {
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.strength-card:hover h5 {
  transform: translateZ(30px);
  color: #1B8A5A;
}

/* Staggered animation on load */
.strength-card {
  animation: strengthCardFloat 1s ease-out backwards;
}

.strength-card:nth-child(1) { animation-delay: 0.1s; }
.strength-card:nth-child(2) { animation-delay: 0.2s; }
.strength-card:nth-child(3) { animation-delay: 0.3s; }
.strength-card:nth-child(4) { animation-delay: 0.4s; }
.strength-card:nth-child(5) { animation-delay: 0.5s; }
.strength-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes strengthCardFloat {
  from {
    opacity: 0;
    transform: translateY(50px) translateZ(-100px) rotateX(-15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(0) rotateX(0);
  }
}

/* Add subtle 3D border effect */
.strength-card {
  border: 1px solid rgba(27, 138, 90, 0.1);
  border-bottom: 3px solid rgba(27, 138, 90, 0.15);
}

.strength-card:hover {
  border-bottom: 5px solid rgba(27, 138, 90, 0.3);
}

/* ================= ABOUT PAGE - VISION & MISSION ================= */
.about-image-wrapper {
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.about-image-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
}

.about-image-wrapper img {
  border: 3px solid rgba(27, 138, 90, 0.1);
  transition: all 0.4s ease;
}

.about-image-wrapper:hover img {
  border-color: rgba(27, 138, 90, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2) !important;
}

.vision-mission-card {
  background: linear-gradient(145deg, #ffffff, #f8fdf9);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 138, 90, 0.1);
  border-left: 5px solid #1B8A5A;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 138, 90, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vision-mission-card:hover::before {
  opacity: 1;
}

.vision-mission-card:hover {
  transform: translateY(-15px) translateZ(30px) scale(1.02);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.12),
    0 10px 30px rgba(27, 138, 90, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 1);
  border-left: 8px solid #1B8A5A;
}

.card-icon-wrapper {
  display: inline-block;
  position: relative;
}

.card-icon {
  font-size: 4rem;
  display: inline-block;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
  filter: drop-shadow(0 5px 15px rgba(27, 138, 90, 0.2));
}

.vision-mission-card:hover .card-icon {
  transform: translateZ(50px) scale(1.2) rotate(10deg);
  filter: drop-shadow(0 10px 25px rgba(27, 138, 90, 0.3));
}

.vision-mission-card h3 {
  transition: all 0.4s ease;
  position: relative;
}

.vision-mission-card h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1B8A5A, #0F5132);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.vision-mission-card:hover h3::after {
  width: 100px;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  padding: 15px 0 15px 45px;
  position: relative;
  font-size: 1.05rem;
  color: #6c757d;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.mission-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #1B8A5A, #0F5132);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(27, 138, 90, 0.3);
  transition: all 0.4s ease;
}

.mission-list li:hover {
  color: #1B8A5A;
  transform: translateX(10px);
}

.mission-list li:hover::before {
  transform: translateY(-50%) scale(1.15) rotate(360deg);
  box-shadow: 0 6px 20px rgba(27, 138, 90, 0.4);
}

/* Animation on load */
.vision-mission-card {
  animation: fadeInUp 0.8s ease-out backwards;
}

.vision-mission-card:nth-child(1) {
  animation-delay: 0.2s;
}

.vision-mission-card:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= PRODUCTS PAGE STYLES ================= */

/* Technology Header */
.tech-header {
  position: relative;
}

.tech-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1B8A5A, #0F5132);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(27, 138, 90, 0.3);
  transition: all 0.3s ease;
}

.tech-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(27, 138, 90, 0.4);
}

/* Product Tags Container */
.product-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.product-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 22px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transform-style: preserve-3d;
}

.product-tag:hover {
  background: linear-gradient(135deg, #059669, #0D9488);
  color: white;
  transform: translateY(-5px) translateZ(10px) scale(1.08);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Production Capacity Section */
.production-capacity-section {
  background: linear-gradient(135deg, #f8fdf9 0%, #e9f7ef 100%);
  position: relative;
  overflow: hidden;
}

.production-capacity-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(27, 138, 90, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.capacity-card {
  background: linear-gradient(135deg, white 0%, #FFFBEB 100%);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 
    var(--shadow-md),
    inset 0 2px 4px rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(249, 115, 22, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.capacity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-warm);
  opacity: 0;
  transition: opacity 0.4s ease;
}

card:hover::before {
  opacity: 0.08;
}

.capacity-card:hover {
  transform: translateY(-18px) translateZ(30px) scale(1.06);
  box-shadow: 
    var(--shadow-xl),
    inset 0 2px 4px rgba(255, 255, 255, 0.95);
  border-color: var(--accent-orange);
}

.capacity-icon {
  font-size: 4rem;
  margin-bottom: 18px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: inline-block;
  filter: drop-shadow(0 8px 20px rgba(249, 115, 22, 0.25));
}

.capacity-card:hover .capacity-icon {
  transform: scale(1.3) rotate(15deg) translateZ(40px);
  filter: drop-shadow(0 12px 30px rgba(249, 115, 22, 0.4));
}

.capacity-value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 18px 0 12px;
  transition: all 0.3s ease;
  display: block;
}

.capacity-card:hover .capacity-value {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.3));
}

.capacity-label {
  font-size: 1.05rem;
  color: var(--dark-navy);
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}

.capacity-card:hover .capacity-label {
  color: var(--accent-orange);
  transform: translateY(-2px);
}

/* Process Flow */
.process-flow-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 100%;
  margin: 0 auto;
}

.process-top-row,
.process-second-row {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

@media (min-width: 769px) {
  .process-second-row {
    flex-direction: row-reverse;
  }

  .process-second-row .process-arrow {
    transform: rotate(180deg);
  }

  .process-second-row .process-arrow:hover {
    transform: rotate(180deg) scale(1.3);
  }
}

.process-step {
  background: white;
  border: 3px solid rgba(27, 138, 90, 0.2);
  border-radius: 15px;
  padding: 20px 15px;
  min-width: 140px;
  max-width: 160px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px) translateZ(20px) scale(1.05);
  box-shadow: 0 15px 35px rgba(27, 138, 90, 0.2);
  border-color: #1B8A5A;
  background: linear-gradient(145deg, #ffffff, #f8fdf9);
}

.process-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1B8A5A, #0F5132);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(27, 138, 90, 0.3);
  transition: all 0.4s ease;
}

.process-step:hover .process-number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 6px 20px rgba(27, 138, 90, 0.5);
}

.process-step p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.4;
}

.process-highlight {
  border-color: #1B8A5A;
  border-width: 4px;
  background: linear-gradient(145deg, #f8fdf9, #e9f7ef);
}

.process-highlight .process-number {
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
}

.process-arrow {
  color: #1B8A5A;
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.process-arrow:hover {
  opacity: 1;
  transform: scale(1.3);
}

.process-step-with-down {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-arrow-down {
  flex: 0 0 auto;
  text-align: center;
  color: #1B8A5A;
  font-size: 1.9rem;
  font-weight: 700;
  opacity: 0.7;
  line-height: 1;
  position: relative;
  padding: 6px 0 0;
}

.process-arrow-down::before {
  content: '';
  display: block;
  width: 2px;
  height: 18px;
  margin: 0 auto 4px;
  background: rgba(27, 138, 90, 0.35);
  border-radius: 999px;
}

.process-arrow-down::after {
  content: '';
  display: block;
  width: 2px;
  height: 12px;
  margin: 4px auto 0;
  background: rgba(27, 138, 90, 0.2);
  border-radius: 999px;
}

.process-bottom-row {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-direction: row-reverse;
  position: static;
  margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .process-flow-container {
    flex-direction: column;
    gap: 10px;
  }

  .process-top-row,
  .process-second-row {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .process-arrow-down,
  .process-arrow-left {
    transform: none;
    font-size: 1.5rem;
  }

  .process-step-with-down {
    width: 100%;
  }

  .process-bottom-row {
    position: static;
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
  
  .process-step {
    min-width: 100%;
    max-width: 100%;
  }
  
  .product-tags-container {
    gap: 8px;
  }
  
  .product-tag {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

/* Animation on scroll */
.capacity-card {
  animation: fadeInUp 0.8s ease-out backwards;
}

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

.process-step {
  animation: fadeInUp 0.6s ease-out backwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(5) { animation-delay: 0.3s; }
.process-step:nth-child(7) { animation-delay: 0.4s; }
.process-step:nth-child(9) { animation-delay: 0.5s; }
.process-step:nth-child(11) { animation-delay: 0.6s; }
.process-step:nth-child(13) { animation-delay: 0.7s; }
.process-step:nth-child(15) { animation-delay: 0.8s; }
.process-step:nth-child(17) { animation-delay: 0.9s; }

/* ================= HOMEPAGE - TECHNOLOGIES SECTION - REDESIGNED ================= */
.tech-card {
  background: linear-gradient(135deg, white 0%, #ECFDF5 100%);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(16, 185, 129, 0.15);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tech-card:hover::before {
  opacity: 0.08;
}

.tech-card:hover {
  transform: translateY(-18px) translateZ(30px) scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.tech-icon-wrapper {
  display: inline-block;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.5s ease;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.tech-card:hover .tech-icon-wrapper {
  transform: scale(1.2) rotate(360deg);
  background: var(--gradient-primary);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.tech-icon {
  font-size: 2.8rem;
  transition: all 0.5s ease;
}

.tech-card:hover .tech-icon {
  filter: brightness(0) invert(1);
}

/* Tech image wrapper for actual images */
.tech-image-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
  transition: all 0.5s ease;
  border: 3px solid rgba(16, 185, 129, 0.2);
}

.tech-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.tech-card:hover .tech-image-wrapper {
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.tech-card:hover .tech-image {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.tech-capacity {
  display: inline-block;
  background: var(--gradient-warm);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Tech cards within anchor tags */
a .tech-card h4,
a .tech-card p {
  color: inherit;
}

a:hover .tech-card {
  transform: translateY(-18px) translateZ(30px) scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

a:hover .tech-card::before {
  opacity: 0.08;
}

a:hover .tech-card .tech-icon-wrapper {
  transform: scale(1.2) rotate(360deg);
  background: var(--gradient-primary);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

a:hover .tech-card .tech-icon {
  filter: brightness(0) invert(1);
}

a:hover .tech-card .tech-image-wrapper {
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
  border-color: var(--primary-green);
  transform: scale(1.05);
}

a:hover .tech-card .tech-image {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* ================= CATEGORY CARDS - REDESIGNED ================= */
.category-card {
  background: linear-gradient(145deg, #ffffff, #F0FDFA);
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(16, 185, 129, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.category-card:hover {
  transform: translateY(-12px) translateZ(20px) scale(1.05);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
  background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
}

.category-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.category-card:hover .category-number {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

/* Ensure text colors work inside anchor wrapper */
a .category-card h6 {
  color: inherit;
}

a .category-card p {
  color: inherit;
}

/* ================= SOLUTION CARDS - REDESIGNED ================= */
.solution-card {
  background: linear-gradient(135deg, white 0%, #FFFBEB 100%);
  border-radius: 20px;
  padding: 35px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(249, 115, 22, 0.15);
  transition: all 0.4s ease;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-orange);
  background: linear-gradient(145deg, #FFFBEB, #FEF3C7);
}

.solution-icon {
  font-size: 3.5rem;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.2));
}

.solution-card:hover .solution-icon {
  transform: scale(1.35) rotate(10deg);
  filter: drop-shadow(0 8px 16px rgba(249, 115, 22, 0.4));
}

/* ================= INDUSTRY CARDS - REDESIGNED ================= */
.industry-card {
  background: linear-gradient(135deg, white 0%, #F0FDFA 100%);
  border-radius: 16px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(16, 185, 129, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.06);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
  background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
}

.industry-icon {
  font-size: 3rem;
  display: inline-block;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.15));
}

.industry-card:hover .industry-icon {
  transform: scale(1.25) rotate(-10deg);
  filter: drop-shadow(0 8px 16px rgba(16, 185, 129, 0.3));
}

.industry-card h6 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--dark-navy);
  transition: all 0.3s ease;
  font-weight: 700;
}

.industry-card:hover h6 {
  color: var(--primary-green);
}

/* ================= CERTIFICATION CARDS - REDESIGNED ================= */
.cert-card {
  background: linear-gradient(135deg, white 0%, #ECFDF5 100%);
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(16, 185, 129, 0.2);
  transition: all 0.4s ease;
  min-height: 280px;
}

.cert-card:hover {
  transform: translateY(-12px) scale(1.1);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
}

.cert-badge {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  transition: all 0.4s ease;
}

.cert-card:hover .cert-badge {
  transform: scale(1.25) rotate(360deg);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.cert-card h6 {
  font-weight: 700;
  color: var(--dark-navy);
  font-size: 1rem;
  margin-top: 15px;
}

.cert-badge-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
  transition: all 0.4s ease;
  border: 3px solid rgba(16, 185, 129, 0.3);
}

.cert-card:hover .cert-badge-large {
  transform: scale(1.15) rotate(5deg);
  background: var(--gradient-primary);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
  border-color: var(--primary-green);
}

.cert-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s ease;
}

.cert-logo img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.cert-card:hover .cert-logo img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

/* ================= GALLERY - REDESIGNED ================= */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid rgba(16, 185, 129, 0.1);
}

.gallery-item:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(1.15);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 0.15;
}

/* Gallery items within anchor tags */
a:hover .gallery-item {
  transform: scale(1.06);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

a:hover .gallery-item img {
  transform: scale(1.15);
  filter: brightness(1.15);
}

a:hover .gallery-item::before {
  opacity: 0.15;
}

/* ================= LEAD FORM SECTION - REDESIGNED ================= */
.lead-form-section {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDFA 100%);
  position: relative;
}

.lead-form .form-control,
.lead-form .form-select {
  border: 2px solid rgba(16, 185, 129, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.lead-form textarea.form-control {
  resize: none;
}

/* ================= WHATSAPP CTA CARD - REDESIGNED ================= */
.whatsapp-cta-card {
  background: linear-gradient(135deg, white 0%, #ECFDF5 100%);
  border-radius: 30px;
  padding: 60px 45px;
  text-align: center;
  box-shadow: 
    var(--shadow-xl),
    inset 0 2px 8px rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(16, 185, 129, 0.2);
  transition: all 0.5s ease;
  transform-style: preserve-3d;
}

.whatsapp-cta-card:hover {
  transform: translateY(-15px) translateZ(20px);
  box-shadow: 
    0 35px 90px rgba(16, 185, 129, 0.2),
    inset 0 4px 12px rgba(255, 255, 255, 1);
  border-color: var(--primary-green);
}

.whatsapp-icon-large {
  font-size: 5.5rem;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 12px 30px rgba(16, 185, 129, 0.3));
}

.whatsapp-cta-card:hover .whatsapp-icon-large {
  transform: scale(1.25) rotate(15deg);
  filter: drop-shadow(0 16px 40px rgba(16, 185, 129, 0.45));
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-card,
  .category-card,
  .solution-card,
  .industry-card {
    margin-bottom: 15px;
  }
  
  .whatsapp-cta-card {
    padding: 30px 25px;
    margin-top: 30px;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* ================= B2B SOLUTIONS PAGE ================= */
.solution-detail-card {
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(27, 138, 90, 0.1);
  transition: all 0.5s ease;
  height: 100%;
}

.solution-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(27, 138, 90, 0.15);
  border-color: #1B8A5A;
  background: linear-gradient(145deg, #ffffff, #f8fdf9);
}

.solution-icon-large {
  font-size: 4rem;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.solution-detail-card:hover .solution-icon-large {
  transform: scale(1.2) rotate(10deg);
}

.solution-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.solution-features li {
  padding: 10px 0 10px 35px;
  position: relative;
  color: #6c757d;
}

.solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #1B8A5A, #0F5132);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(27, 138, 90, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(27, 138, 90, 0.15);
  border-color: #1B8A5A;
}

.benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* ================= QUALITY PAGE - REDESIGNED ================= */
.certification-card {
  background: linear-gradient(135deg, white 0%, #ECFDF5 100%);
  border-radius: 22px;
  padding: 35px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(16, 185, 129, 0.2);
  transition: all 0.5s ease;
  height: 100%;
}

.certification-card:hover {
  transform: translateY(-18px) scale(1.05);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
}

.cert-logo {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
  border-radius: 50%;
  padding: 20px;
  transition: all 0.5s ease;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.certification-card:hover .cert-logo {
  transform: scale(1.15) rotate(360deg);
  background: var(--gradient-primary);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.cert-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.certification-card:hover .cert-logo img {
  filter: none;
  transform: scale(1.03);
}

.qc-step-card {
  background: linear-gradient(145deg, #ffffff, #F0FDFA);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(16, 185, 129, 0.15);
  transition: all 0.4s ease;
  height: 100%;
}

.qc-step-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
  background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
}

.qc-number {
  width: 65px;
  height: 65px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  transition: all 0.4s ease;
}

.qc-step-card:hover .qc-number {
  transform: scale(1.25) rotate(360deg);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.5);
}

.parameter-card {
  background: linear-gradient(135deg, white 0%, #FFFBEB 100%);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--accent-orange);
  border-right: 2px solid rgba(249, 115, 22, 0.1);
  border-top: 2px solid rgba(249, 115, 22, 0.1);
  border-bottom: 2px solid rgba(249, 115, 22, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.parameter-card:hover {
  transform: translateX(12px);
  box-shadow: var(--shadow-xl);
  border-left-color: var(--accent-orange);
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
}

.parameter-list {
  list-style: none;
  padding: 0;
}

.parameter-list li {
  padding: 10px 0 10px 35px;
  position: relative;
  color: var(--dark-gray);
  font-weight: 500;
}

.parameter-list li::before {
  content: '✓';
  position: absolute;
  left: 10px;
  color: var(--accent-orange);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.hygiene-card {
  background: linear-gradient(145deg, #ffffff, #F0FDFA);
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(16, 185, 129, 0.2);
  transition: all 0.4s ease;
}

.hygiene-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
  background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
}

.hygiene-card ul {
  list-style: none;
  padding: 0;
}

.hygiene-card ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--dark-gray);
  font-weight: 500;
}

.hygiene-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ================= GALLERY PAGE - REDESIGNED ================= */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid rgba(16, 185, 129, 0.15);
}

.gallery-card:hover {
  transform: scale(1.07);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.gallery-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.18);
  filter: brightness(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.95), rgba(6, 182, 212, 0.7));
  padding: 35px 22px 22px;
  transform: translateY(100%);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h5 {
  font-size: 1.1rem;
  margin: 0;
}

.gallery-overlay p {
  opacity: 0.9;
}

/* Responsive for gallery */
@media (max-width: 768px) {
  .gallery-card img {
    height: 220px;
  }
}


/* ================= ENHANCED HOVER ANIMATIONS ================= */

/* Image Hover Effects - Add brightness and depth */
img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-fluid:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

/* Link Hover Effects - Smooth underline animation */
a:not(.btn):not(.nav-link):not(.navbar-brand) {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:not(.btn):not(.nav-link):not(.navbar-brand)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1B8A5A, #2ECC71);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:not(.btn):not(.nav-link):not(.navbar-brand):hover::after {
  width: 100%;
}

a:not(.btn):not(.nav-link):not(.navbar-brand):hover {
  color: #1B8A5A;
}

/* Form Input Hover & Focus Effects */
.form-control,
.form-select {
  transition: all 0.3s ease;
  position: relative;
}

.form-control:hover:not(:focus),
.form-select:hover:not(:focus) {
  border-color: #1B8A5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 138, 90, 0.1);
}

/* Heading Hover Effects */
h1, h2, h3, h4, h5, h6 {
  transition: all 0.3s ease;
}

section h2:hover,
section h3:hover {
  transform: scale(1.02);
  color: var(--primary-green);
}

/* Icon/Emoji Bounce on Hover */
.tech-icon,
.solution-icon,
.industry-icon,
.capacity-icon,
.whatsapp-icon-large {
  cursor: pointer;
  display: inline-block;
}

.tech-icon:hover,
.solution-icon:hover,
.industry-icon:hover,
.capacity-icon:hover {
  animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-5deg); }
  50% { transform: scale(1.15) rotate(5deg); }
  75% { transform: scale(1.1) rotate(-3deg); }
}

/* Image Containers - Enhanced Zoom Effect */
.glass-card img:hover,
.product-box img:hover,
.facility-image-card img:hover {
  filter: brightness(1.1) contrast(1.05);
}

/* List Item Hover Effects */
ul:not(.navbar-nav) li {
  transition: all 0.3s ease;
  position: relative;
}

ul:not(.navbar-nav):not(.parameter-list):not(.dropdown-menu) li:hover {
  transform: translateX(5px);
  color: #1B8A5A;
}

ul:not(.navbar-nav):not(.parameter-list):not(.dropdown-menu) li::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 6px;
  height: 6px;
  background: #1B8A5A;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

ul:not(.navbar-nav):not(.parameter-list):not(.dropdown-menu) li:hover::before {
  transform: translateY(-50%) scale(1);
}

/* Section Background Hover - Subtle gradient shift */
section {
  transition: background-color 0.5s ease;
}

/* Card Shadow Depth Animation */
.tech-card,
.category-card,
.solution-card,
.industry-card,
.cert-card,
.gallery-card,
.whatsapp-cta-card,
.glass-card,
.stylish-card,
.product-box {
  will-change: transform;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Scroll padding for fixed navbar */
section[id] {
  scroll-margin-top: 80px;
}

/* Text Selection Styling - REDESIGNED */
::selection {
  background-color: var(--primary-green);
  color: white;
}

::-moz-selection {
  background-color: var(--primary-green);
  color: white;
}

/* Cursor Pointer for Interactive Elements */
.tech-card,
.category-card,
.solution-card,
.industry-card,
.cert-card,
.gallery-card,
.gallery-item,
.product-box,
.capacity-card {
  cursor: pointer;
}

/* Enhanced Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.97);
}

/* Navbar Item Pulse on Hover */
.nav-link.active {
  animation: navPulse 2s ease-in-out infinite;
}

@keyframes navPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Footer Link Hover */
footer a:hover {
  color: #1B8A5A !important;
  transform: translateX(5px);
}

/* Image Loading Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

img {
  animation: fadeIn 0.5s ease-in;
}

/* Card Tilt Effect on Hover (3D) */
@media (hover: hover) and (pointer: fine) {
  .tech-card:hover,
  .solution-card:hover,
  .industry-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateY(-10px);
  }
}

/* Enhanced Gallery Overlay */
.gallery-overlay {
  backdrop-filter: blur(5px);
}

/* Scale Animation for Categories */
.category-number {
  display: inline-block;
}

/* Smooth Transitions for All Interactive Elements */
* {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select {
  transition: all 0.3s ease;
}

/* Hover Effect for Capacity Cards */
.capacity-card {
  position: relative;
  overflow: hidden;
}

.capacity-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(27, 138, 90, 0.1), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}

.capacity-card:hover::after {
  width: 300px;
  height: 300px;
}

/* Animated Border for Forms on Focus */
.form-control:focus,
.form-select:focus {
  animation: focusGlow 1.5s ease-in-out infinite;
}

@keyframes focusGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(27, 138, 90, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(27, 138, 90, 0.5), 0 0 30px rgba(27, 138, 90, 0.3);
  }
}

/* Page Header Text Glow */
.page-header h1 {
  transition: all 0.3s ease;
}

.page-header h1:hover {
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

/* Staggered Animation for Cards */
.tech-card:nth-child(1),
.solution-card:nth-child(1),
.category-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.tech-card:nth-child(2),
.solution-card:nth-child(2),
.category-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.tech-card:nth-child(3),
.solution-card:nth-child(3),
.category-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.tech-card:nth-child(4),
.solution-card:nth-child(4),
.category-card:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.tech-card:nth-child(5),
.solution-card:nth-child(5) {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.tech-card:nth-child(6),
.solution-card:nth-child(6) {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Certification Logo Pulse */
.cert-card img,
.certification-card img {
  transition: all 0.4s ease;
}

.cert-card:hover img,
.certification-card:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 10px 20px rgba(27, 138, 90, 0.3));
}

/* Product Tag Enhanced Hover */
.product-tag {
  position: relative;
  overflow: hidden;
}

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

.product-tag:hover::before {
  left: 100%;
}

/* WhatsApp Button Shake Animation */
.whatsapp-cta-card .btn:hover {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0) translateY(-3px); }
  25% { transform: translateX(-5px) translateY(-3px); }
  75% { transform: translateX(5px) translateY(-3px); }
}

/* Gallery Card Enhanced Interactivity */
.gallery-card {
  transform-origin: center;
}

.gallery-card:hover {
  z-index: 10;
}

/* Smooth Color Transitions */
.text-muted {
  transition: color 0.3s ease;
}

/* Enhanced CTA Section */
.cta-section .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Navbar Shadow on Scroll Enhancement */
.navbar {
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Parameter Card Interactive Effect */
.parameter-card {
  cursor: pointer;
}

.parameter-card:hover .parameter-list li {
  color: #1B8A5A;
}

/* QC Step Number Rotation */
.qc-number {
  transition: all 0.4s ease;
}

.qc-step-card:hover .qc-number {
  transform: rotate(360deg) scale(1.1);
}

/* Hygiene Card List Animation */
.hygiene-card:hover ul li {
  animation: slideInLeft 0.3s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hygiene-card ul li:nth-child(1) { animation-delay: 0.1s; }
.hygiene-card ul li:nth-child(2) { animation-delay: 0.2s; }
.hygiene-card ul li:nth-child(3) { animation-delay: 0.3s; }
.hygiene-card ul li:nth-child(4) { animation-delay: 0.4s; }
.hygiene-card ul li:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Hover Effects - Disable on Touch Devices */
@media (hover: none) {
  .tech-card:hover,
  .solution-card:hover,
  .category-card:hover,
  .industry-card:hover {
    transform: none;
  }
}

/* ================= END OF ENHANCED HOVER ANIMATIONS ================= */
