:root {
            --primary-dark: #0d2818;
            --primary-green: #1a3d0c;
            --secondary-green: #2d5016;
            --accent-green: #5a7c3a;
            --light-green: #8fb368;
            --pale-green: #c3d69b;
            --mint-green: #d4e8d4;
            --white: #ffffff;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-600: #6c757d;
            --gray-800: #343a40;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
			--light-bg-green:#e7f1dc
			
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Top Bar */
        .top-bar {
            background: var(--primary-dark);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-bar-left,
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .top-bar a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }
        
        .top-bar a:hover {
            opacity: 1;
        }
        
         /* Main Header */
        .main-header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .main-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .header-container {
            padding: 15px 0;
            transition: padding 0.3s ease;
        }
        
        .main-header.scrolled .header-container {
            padding: 10px 0;
        }
        footer .container {z-index:10; position: relative;}
        /* Brand Logo */
        .brand-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .brand-logo:hover {
            transform: scale(1.02);
        }
        
         .brand-logo img{width:220px;}
        /* Main Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--gray-800) !important;
            font-weight: 500;
            padding: 10px 16px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .nav-link:hover {
            background: var(--mint-green);
            color: var(--primary-green) !important;
            transform: translateY(-1px);
        }
        
        .nav-link.active {
            background: linear-gradient(135deg, var(--pale-green), var(--mint-green));
            color: var(--primary-green) !important;
        }
        
        .nav-link i {
            font-size: 0.85rem;
            opacity: 0.7;
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-xl);
            border-radius: 12px;
            padding: 15px;
            margin-top: 10px;
            background: var(--white);
            animation: dropdownFade 0.3s ease;
            min-width: 280px;
        }
        
        @keyframes dropdownFade {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dropdown-item {
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gray-800);
        }
        
        .dropdown-item:hover {
            background: var(--mint-green);
            color: var(--primary-green);
            transform: translateX(5px);
        }
        
        .dropdown-item i {
            width: 20px;
            text-align: center;
            color: var(--accent-green);
        }
        
        .dropdown-divider {
            margin: 10px 0;
            border-color: var(--gray-200);
        }
        
        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 90vw;
            max-width: 1200px;
            background: var(--white);
            box-shadow: var(--shadow-xl);
            border-radius: 16px;
            padding: 30px;
            margin-top: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .mega-menu-header {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--pale-green);
        }
        
        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .mega-menu-item {
            display: flex;
            align-items: start;
            gap: 15px;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .mega-menu-item:hover {
            background: var(--mint-green);
            transform: translateY(-2px);
        }
        
        .mega-menu-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--light-green), var(--accent-green));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
        }
        
        .mega-menu-content h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 5px;
        }
        
        .mega-menu-content p {
            font-size: 0.85rem;
            color: var(--gray-600);
            margin: 0;
        }
        
        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-input {
            width: 0;
            padding: 0;
            border: none;
            background: var(--gray-100);
            border-radius: 25px;
            transition: all 0.3s ease;
            opacity: 0;
        }
        
        .search-box.active .search-input {
            width: 200px;
            padding: 8px 35px 8px 15px;
            opacity: 1;
        }
        
        .search-btn {
            background: none;
            border: none;
            color: var(--gray-600);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .search-btn:hover {
            color: var(--accent-green);
        }
        
        .header-btn {
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-login {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }
        
        .btn-login:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 61, 12, 0.3);
        }
        
        .btn-primary-action {
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            color: var(--white);
            border: none;
            box-shadow: 0 4px 15px rgba(139, 179, 104, 0.3);
        }
        
        .btn-primary-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 179, 104, 0.4);
            color: var(--white);
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-green);
            cursor: pointer;
        }
        
        /* Notification Badge */
        .notification-badge {
            position: relative;
        }
        
        .notification-badge::after {
            content: '3';
            position: absolute;
            top: -5px;
            right: -5px;
            width: 18px;
            height: 18px;
            background: var(--accent-green);
            color: var(--white);
            border-radius: 50%;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .mega-menu {
                width: 95vw;
            }
        }
        
        @media (max-width: 992px) {
            .brand-tagline {
                display: none;
            }
            
            .search-box {
                display: none;
            }
            
            .main-nav {
                gap: 0;
            }
            
            .nav-link {
                padding: 8px 12px !important;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .main-nav,
            .header-actions .btn-login {
                display: none;
            }
            
            .brand-name {
                font-size: 1.3rem;
            }
            
            .logo-icon {
                width: 40px;
                height: 40px;
            }
            
            .logo-icon i {
                font-size: 1.5rem;
            }
        }
        /* Enhanced Hero Section */
        .hero-section {
           
            min-height: calc(650px - 80px);
            background: linear-gradient(135deg, #f8faf6 0%, #e8f2e1 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                radial-gradient(circle at 20% 30%, var(--light-green) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, var(--accent-green) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, var(--pale-green) 0%, transparent 50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 40px 0;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 179, 104, 0.1);
            color: var(--accent-green);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 30px;
            animation: fadeInUp 0.6s ease;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 24px;
            line-height: 1.1;
            animation: fadeInUp 0.7s ease;
			
        }
        
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.9s ease;
        }
        
        .btn-hero-primary {
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            color: white;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(139, 179, 104, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-hero-primary::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;
        }
        
        .btn-hero-primary:hover::before {
            left: 100%;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(139, 179, 104, 0.4);
            color: white;
        }
        
        .btn-hero-secondary {
            background: transparent;
            color: var(--accent-green);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid var(--accent-green);
            transition: all 0.3s ease;
        }
        
        .btn-hero-secondary:hover {
            background: var(--accent-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 179, 104, 0.3);
        }
        
        .hero-tagline {
            margin-top: 30px;
            font-size: 0.95rem;
            color: var(--text-light);
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-tagline::before,
        .hero-tagline::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--pale-green), transparent);
        }
        
        .hero-image-container {
            position: relative;
            animation: fadeInRight 1s ease;
        }
        
        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.3s ease;
        }
        
        .hero-image-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .hero-image {
            width: 100%;
            height: 600px;
            display: block;
			
        }
        
        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 179, 104, 0.2), transparent);
        }
        
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-card-1 {
            top: 20px;
            right: -30px;
            animation-delay: 0s;
        }
        
        .floating-card-2 {
            bottom: 30px;
            left: -20px;
            animation-delay: 1.5s;
        }
        
        .floating-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--light-green), var(--accent-green));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .floating-card-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .hero-content {
                padding: 40px 0;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .floating-card {
                display: none;
            }
            
            .hero-image-wrapper {
                transform: none;
                margin-top: 40px;
            }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 40px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 20px;
            text-align: center;
			font-family: Yanone Kaffeesatz, sans-serif;
    font-size: 4em;
    font-weight: 800;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--secondary-green);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        /* Card Styles */
        .feature-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid var(--light-green);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-green);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        /* Why Section */
        .why-section {
            background-color:var(--light-bg-green);
        }
        
        .why-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .why-list li {
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
            position: relative;
            padding-left: 35px;
        }
        
        .why-list li:last-child {
            border-bottom: none;
        }
        
        .why-list li::before {
            content: '\2713';
            position: absolute;
            left: 0;
            color: var(--light-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Who Section */
        .who-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background-color: white;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .who-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .who-icon {
           display: flex; align-items: center; justify-content: center; margin-bottom: 10px !important;
        }
        .microbiology-section{
			position: relative; min-height:550px; background-image: url('../img/bg-12.jpg'); background-size: cover; background-position: center; background-attachment: fixed; /* Parallax effect */ display: flex; align-items: center;
		}
		
        /* How It Works */
        .step-container {
            position: relative;
        }
        
        .step-line {
            position: absolute;
            top: 48%;
            left: 50%;
            height: 2px;
            background-color: var(--accent-green);
            width: 80%;
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .step-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            position: relative;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--secondary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
		/* Product Hero Section */
        .product-hero {
            padding: 60px 0 20px;
            /* background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%); */
            position: relative;
            overflow: hidden;
			min-height:210px; background-image: url('../img/bg-12.jpg'); background-size: cover; background-position:center; background-attachment: fixed; display: flex; align-items: start;
        }
        
        .product-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .product-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
        }
        
        .product-hero .hero-title {
           font-family: Yanone Kaffeesatz, sans-serif;
    font-size: 5em;
    font-weight: 800;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }
        
        .product-hero .hero-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.95;
            line-height: 1.6;
            animation: fadeInUp 1s ease;
        }
        
        .product-hero .hero-decoration {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            z-index: 1;
        }
        
        .product-hero .decoration-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
        }
        
        .product-hero .decoration-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -50px;
        }
        
        /* Product Section */
        .products-section {
            padding: 60px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
       
        
        .section-description {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Product Cards */
        .product-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            margin-bottom: 0px;
        }
        
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .product-image {
            height: 250px;
            background: linear-gradient(135deg, var(--mint-green), var(--pale-green));
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-green);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .product-content {
            padding: 10px 30px;
        }
        
        .product-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
			
        }
        
        .product-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .product-details {
            margin-bottom:25px;
        }
        
        .detail-item {
            margin-bottom: 12px;
            padding-left: 35px;
            position: relative;
        }
        
        .detail-item:last-child {
            margin-bottom: 0;
        }
        
        .detail-label {
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 5px;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .detail-text {
            color: var(--gray-600);
                line-height: 18px;
    font-size: 14px;
        }
        
        .detail-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.7rem;
            font-weight: bold;
        }
        
        .detail-item:nth-child(1)::before { content: '1'; }
        .detail-item:nth-child(2)::before { content: '2'; }
        .detail-item:nth-child(3)::before { content: '3'; }
        
        /* Coming Soon Section */
        .coming-soon-section {
            background: linear-gradient(135deg, var(--pale-green), var(--mint-green));
            padding: 80px 0;
            position: relative;
        }
        
        .coming-soon-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .coming-soon-title {
           font-family: Yanone Kaffeesatz, sans-serif;
    font-size: 4em;
    font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 30px;
        }
        
        .coming-soon-text {
            font-size: 1.2rem;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            color: var(--white);
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(122, 154, 97, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(122, 154, 97, 0.4);
            color: var(--white);
        }
        
        /* Where It Fits Section */
        .where-fits-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .fits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .fits-card {
            background: var(--white) 0%;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .fits-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .fits-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 2rem;
        }
        
        .fits-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        .fits-description {
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .product-title {
                font-size: 1.5rem;
            }
            
            .coming-soon-title {
                font-size: 2rem;
            }
        }
		
		.highlight {
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
        
		/* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-container {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .contact-form-container {
               padding: 50px;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-green) 100%);
    height: 100%;
        }
        
        .contact-info-container {
            background: var(--primary-green);
            color: var(--white);
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
			 height: 100%;
        }
        
        .contact-info-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .contact-info-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 0px;
            opacity: 0.9;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-info-text {
            font-size: 1rem;
        }
        
        /* Form Styles */
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 10px;
            display: block;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--pale-green);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent-green);
            box-shadow: 0 0 0 3px rgba(122, 154, 97, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-select {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--pale-green);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
            padding-right: 45px;
            appearance: none;
        }
        
        .form-select:focus {
            outline: none;
            border-color: var(--accent-green);
            box-shadow: 0 0 0 3px rgba(122, 154, 97, 0.1);
        }
        
        .submit-btn,.inquiry-btn {
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            color: var(--white);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(122, 154, 97, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .submit-btn:hover,.inquiry-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(122, 154, 97, 0.4);
        }
		/* Root Zone Section */
        .root-zone-container {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 80px;
        }
        
        .root-zone-header {
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            padding: 30px;
            color: var(--white);
            text-align: center;
        }
        
        .root-zone-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .root-zone-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .root-zone-content {
            padding: 40px;
        }
        
        .focus-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .focus-point {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .focus-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--pale-green), var(--mint-green));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .focus-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--gray-600);
        }
        
        /* Components Section */
        .components-container {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 80px;
        }
        
        .components-header {
            background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
            padding: 30px;
            color: var(--white);
            text-align: center;
        }
        
        .components-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .components-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .components-content {
            padding: 40px;
        }
        
        .component-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .component-card {
            background:var(--mint-green);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .component-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .component-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--white);
            font-size: 2rem;
        }
        
        .component-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .component-text {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--gray-600);
            text-align: center;
        }
        
        /* Process Section */
        .process-container {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        .process-header {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            padding: 30px;
            color: var(--white);
            text-align: center;
        }
        
        .process-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .process-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .process-content {
            padding: 50px 40px;
        }
        
        .process-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 30px;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(122, 154, 97, 0.3);
        }
        
        .step-content {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex-grow: 1;
            position: relative;
            z-index: 2;
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        
        .step-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--gray-600);
        }
        
        .process-line {
            position: absolute;
            left: 30px;
            top: 60px;
            width: 2px;
            height: calc(100% - 20px);
            background: linear-gradient(to bottom, var(--accent-green), transparent);
            z-index: 1;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
		
		 .product-plant {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 10px;
            height: 100%;
        }
        
        .product-plant:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .product-plant .product-image-container {
            position: relative;
            height: 300px;
			overflow:hidden;
        }
        
        .product-plant .product-image {
            width: 100%;
            height: 300px;
            object-fit: fill;
            transition: transform 0.5s ease;
			max-height:300px;
        }
		.product-plant .product-image-container-sm {
            position: relative;
            height: 200px;
			overflow:hidden;
        }
        
        .product-plant .product-image-sm {
            width: 100%;
            height: 200px;
            object-fit: fill;
            transition: transform 0.5s ease;
			max-height:200px;
        }
        
        .product-plant .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-plant .product-info {
            padding: 12px;
            text-align: center;
        }
        
        .product-plant .product-name {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 12px;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .product-plant .price-container {
            margin-bottom: 12px;
			padding: 0px 5px;
        }
        
        .product-plant .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
            padding: 3px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .product-plant .price-label {
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }
        
        .product-plant .price-value {
            font-size: 12px;
            font-weight: 600;
            color: #333;
        }
        
        .product-plant .wholesale-price .price-value {
            color: #333;
			
        }
        
        .product-plant .retail-price .price-value {
            color: #333;
        }
        
        .inquiry-btn {
            padding:8px;
			width:100%;
            text-decoration: none;
            font-size: 14px;
			display:flex;
			align-items:center;
			justify-content:center
        }
        
        
        
        .inquiry-btn i {
            font-size: 14px;
        }
		.viewall{
			    background: linear-gradient(135deg, var(--pale-green), var(--mint-green));
    color: var(--primary-green) !important;
    padding: 5px 20px;
    text-decoration: none;
    border-radius: 5px;
		}
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
           .product-plant .product-image-container {
                height: 180px;
            }
            
            .product-plant .product-name {
                font-size: 15px;
            }
        }
        
        @media (max-width: 992px) {
            .product-plant .product-image-container {
                height: 160px;
            }
            
            .product-plant .product-name {
                font-size: 14px;
            }
            
           .product-plant .price-label {
                font-size: 11px;
            }
            
           .product-plant .price-value {
                font-size: 13px;
            }
        }
        
        @media (max-width: 768px) {
           .product-plant .product-image-container {
                height: 200px;
            }
            
            .product-plant .product-name {
                font-size: 16px;
                white-space: normal;
                overflow: visible;
                text-overflow: unset;
            }
            
            .product-plant .price-label {
                font-size: 12px;
            }
            
            .product-plant .price-value {
                font-size: 14px;
            }
        }
        
        @media (max-width: 576px) {
            .product-plant .product-image-container {
                height: 180px;
            }
        }
		
        /* Footer */
        footer {
           background-color:var(--primary-green); color: white; padding: 50px 0 20px; position: relative;
        }
        footer .footer-img{position: absolute; opacity: .3; bottom: 0 !important; bottom: 0px; z-index: 9;}
        .footer-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .footer-text {
            margin-bottom: 20px;
        }
        .social-links{margin-top:30px;}
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--accent-green);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-section {
                padding: 50px 0;
            }
            
            .step-line {
                display: none;
            }
        }
		
		
.hero-slider {
  width: 100%;
  position: relative;
}

.slider-img {
  max-height:500px;
  object-fit: fill;
}
.hero-slider .carousel-control-next,.hero-slider .carousel-control-prev{opacity:1;}
.hero-slider .carousel-control-next span,.hero-slider .carousel-control-prev span{background-color:var(--pale-green);}
.custom-caption {
  bottom: 50%;
  transform: translateY(50%);
  text-align: left;
}



.carousel-caption {
  z-index: 2;
}		

/* Latest News Section */
.latest-news-section {
  background: #0e5d3b;
  padding: 12px 0;
  overflow: hidden;
}

.news-wrapper {
  display: flex;
  align-items: center;
}

.news-label {
  background: #083d28;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
  margin-right: 20px;
}

.news-ticker {
  overflow: hidden;
  position: relative;
  flex: 1;
}

.news-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollNews 28s linear infinite;
  color: #eafff4;
  font-size: 15px;
}

.news-track span {
  margin-right: 60px;
}

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

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Hide submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

/* Submenu links */
.submenu-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.submenu-link:hover {
    background: #f2f2f2;
}

/* Show submenu on hover */
.dropdown:hover .submenu {
    display: block;
}

.focus-items{
  max-width:900px;
  margin:40px auto 0;
}

.focus-item{
  font-size:18px;
  padding:14px 0;
  border-bottom:1px solid #e5e5e5;
}

.about-list {
    list-style-position: inside;
    padding: 0;
    margin: 0;
    text-align: center;
}
.about-list li {
    font-size: 17.6px;
}

.features-benefits-section{
    padding: 60px 0;
    background: #f4f8f2;
}

.info-card{
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    height: 100%;
}

.info-title{
    font-size: 24px;
    font-weight: 700;
    color: #1a3d0c;
    margin-bottom: 18px;
}

.info-list{
    padding-left: 18px;
    line-height: 1.9;
    color: #444;
    font-size: 16px;
}

.enquiry-box{
    margin-top: 20px;
    background: linear-gradient(135deg, #2d5016, #4c7a2a);
    color: #fff;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
}

.enquiry-box h4{
    font-size: 22px;
    margin-bottom: 10px;
}

.enquiry-link{
    color: #ffd54f;
    font-weight: 600;
    text-decoration: none;
}

.enquiry-link:hover{
    text-decoration: underline;
}
.consultancy-section{
  padding:80px 0;
  background:#f5f7f4;
}

.consultancy-text{
  padding-right:30px;
}

.section-title{
  font-size:38px;
  font-weight:700;
  color:#1b3d1b;
  margin-bottom:20px;
}

.consultancy-text p{
  font-size:18px;
  line-height:1.9;
  color:#444;
}

.consultancy-img{
  width:60%;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}