
        :root {
            --primary-green: #2D5F3F;
            --secondary-green: #4A7C59;
            --light-green: #E8F5E9;
            --accent-orange: #FF6B35;
            --dark-gray: #2C3E50;
            --light-gray: #F8F9FA;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: var(--white);
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .animated-bg span {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 15s infinite;
        }

        .animated-bg span:nth-child(1) { width: 80px; height: 80px; background: var(--primary-green); left: 10%; animation-delay: 0s; }
        .animated-bg span:nth-child(2) { width: 120px; height: 120px; background: var(--accent-orange); right: 20%; animation-delay: 2s; }
        .animated-bg span:nth-child(3) { width: 100px; height: 100px; background: var(--secondary-green); left: 60%; animation-delay: 4s; }
        .animated-bg span:nth-child(4) { width: 90px; height: 90px; background: var(--primary-green); right: 10%; animation-delay: 6s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-30px) rotate(90deg); }
            50% { transform: translateY(30px) rotate(180deg); }
            75% { transform: translateY(-20px) rotate(270deg); }
        }

        /* Navbar */
        
        .navbar {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 30px rgba(0,0,0,0.08);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-green) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            color: var(--accent-orange);
            font-size: 2rem;
        }

        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--accent-orange) !important;
        }

        .nav-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

       
        .navbar-brand .logo-img {
            height: 40px;               /* adjust to your logo */
            width: auto;
            margin-right: 8px;
        }
        .navbar-brand i {               /* hide old icon */
            display: none;
        }

        /* ---- RIGHT SIDE LAYOUT ---- */
        .nav-right {
            flex-shrink: 0;
        }

        /* ---- ICONS ALWAYS TOP ROW ---- */
        @media (max-width: 991px) {
            .nav-icons {
                justify-content: flex-end;
                margin-top: 0 !important;
                padding-top: 0 !important;
                border-top: none !important;
                gap: 10px;
            }
        }

            /* ---- SEARCH ON MOBILE (optional modal) ---- */
            #searchModal .modal-body {
                padding: 1.5rem;
            }
            #searchModal .search-input {
                width: 100%;
            }

        .icon-btn {
            position: relative;
            width: 45px;
            height: 45px;
            background: var(--light-green);
            border: 2px solid var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .icon-btn:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(45, 95, 63, 0.3);
        }

        .icon-btn i {
            color: var(--primary-green);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .icon-btn:hover i {
            color: var(--white);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-orange);
            color: var(--white);
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Search Bar */
        .search-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 20px;
        }

        .search-input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid var(--light-green);
            border-radius: 50px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 5px 15px rgba(45, 95, 63, 0.1);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary-green);
            border: none;
            border-radius: 50%;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .search-btn:hover {
            background: var(--accent-orange);
            transform: translateY(-50%) scale(1.05);
        }

        @media (max-width: 991px) {
            .search-container {
                max-width: 100%;
                margin: 15px 0;
            }

            .nav-icons {
                justify-content: center;
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid var(--light-green);
            }
        }

        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--light-green) 0%, rgba(255, 107, 53, 0.1) 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-green);
            margin-bottom: 25px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero-content h1 span {
            color: var(--accent-orange);
        }

        .hero-content p {
            font-size: 1.3rem;
            color: var(--dark-gray);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease;
        }

        .hero-btn {
            background: var(--accent-orange);
            color: var(--white);
            border: none;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: fadeInUp 1.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .hero-btn:hover {
            background: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        /* .hero-image {
            position: relative;
            animation: float 6s ease-in-out infinite;
        } */

        .hero-image img {
            width: 100%;
            max-width: 600px;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--accent-orange);
            border-radius: 3px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 25px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            border: 3px solid var(--light-green);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(45, 95, 63, 0.2);
            border-color: var(--accent-orange);
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--accent-orange), #ff8c5a);
            transform: rotate(360deg) scale(1.1);
        }

        .feature-icon i {
            font-size: 2.5rem;
            color: var(--white);
        }

        .feature-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--dark-gray);
            line-height: 1.8;
        }

        /* Products Section */
        .products-section {
            padding: 100px 0;
            background: var(--light-green);
        }

        .product-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 3px solid transparent;
            position: relative;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--accent-orange);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 250px;
            background: var(--light-gray);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-orange);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 2;
        }

        .product-content {
            padding: 25px;
        }

        .product-category {
            color: var(--secondary-green);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .product-rating {
            color: var(--accent-orange);
            margin-bottom: 15px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .current-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-green);
        }

        .old-price {
            font-size: 1.2rem;
            color: #999;
            text-decoration: line-through;
        }

        .add-to-cart {
            width: 100%;
            background: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 15px;
            border-radius: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .add-to-cart:hover {
            background: var(--accent-orange);
            transform: scale(1.05);
        }

        /* Categories Section */
        .categories-section {
            padding: 100px 0;
            background: var(--white);
        }

        .category-card {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            height: 250px;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(45, 95, 63, 0.8), rgba(255, 107, 53, 0.8));
            z-index: 1;
            transition: all 0.3s ease;
        }

        .category-card:hover::before {
            opacity: 0.9;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .category-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .category-name {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            top: -250px;
            right: -250px;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-btn {
            background: var(--accent-orange);
            color: var(--white);
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: var(--white);
            color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer h5 {
            color: var(--accent-orange);
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin: 10px 0;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-orange);
            padding-left: 10px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--accent-orange);
            transform: translateY(-5px);
        }

        .social-icon i {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }






         /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .animated-bg span {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 15s infinite;
        }

        .animated-bg span:nth-child(1) { width: 80px; height: 80px; background: var(--primary-green); left: 10%; animation-delay: 0s; }
        .animated-bg span:nth-child(2) { width: 120px; height: 120px; background: var(--accent-orange); right: 20%; animation-delay: 2s; }
        .animated-bg span:nth-child(3) { width: 100px; height: 100px; background: var(--secondary-green); left: 60%; animation-delay: 4s; }
        .animated-bg span:nth-child(4) { width: 90px; height: 90px; background: var(--primary-green); right: 10%; animation-delay: 6s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-30px) rotate(90deg); }
            50% { transform: translateY(30px) rotate(180deg); }
            75% { transform: translateY(-20px) rotate(270deg); }
        }

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 30px rgba(0,0,0,0.08);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-green) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand .logo-img {
            height: 40px;
            width: auto;
            margin-right: 8px;
        }

        .navbar-brand i {
            display: none;
        }

        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--accent-orange) !important;
        }

        /* Right side container */
        .nav-right {
            flex-shrink: 0;
        }

        .nav-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            position: relative;
            width: 45px;
            height: 45px;
            background: var(--light-green);
            border: 2px solid var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .icon-btn:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(45, 95, 63, 0.3);
        }

        .icon-btn i {
            color: var(--primary-green);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .icon-btn:hover i {
            color: var(--white);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-orange);
            color: var(--white);
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Mobile adjustments - Icons stay on top row */
        @media (max-width: 991px) {
            .navbar > .container {
                display: flex;
                flex-wrap: wrap;
                position: relative;
            }

            .navbar-brand {
                order: 1;
                font-size: 1.4rem;
            }

            .navbar-brand .logo-img {
                height: 32px;
            }

            .nav-right {
                order: 2;
                margin-left: auto;
            }

            .navbar-toggler {
                order: 3;
                margin-left: 10px;
            }

            .nav-icons {
                justify-content: flex-end;
                margin-top: 0 !important;
                padding-top: 0 !important;
                border-top: none !important;
                gap: 8px;
            }

            .navbar-collapse {
                order: 4;
                width: 100%;
                margin-top: 15px;
            }

            .icon-btn {
                width: 36px;
                height: 36px;
            }

            .icon-btn i {
                font-size: 1rem;
            }

            .cart-badge {
                width: 18px;
                height: 18px;
                font-size: 0.65rem;
                top: -6px;
                right: -6px;
            }
        }

        /* Search Modal */
        #searchModal .modal-body {
            padding: 1.5rem;
        }

        #searchModal .modal-header {
            border-bottom: 2px solid var(--light-green);
        }

        #searchModal .modal-title {
            color: var(--primary-green);
            font-weight: 700;
        }

        .search-container {
            position: relative;
            width: 100%;
        }

        .search-input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid var(--light-green);
            border-radius: 50px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 5px 15px rgba(45, 95, 63, 0.1);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary-green);
            border: none;
            border-radius: 50%;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .search-btn:hover {
            background: var(--accent-orange);
            transform: translateY(-50%) scale(1.05);
        }

        /* Demo content */
        .demo-content {
            padding: 60px 20px;
            text-align: center;
        }

        .demo-content h1 {
            color: var(--primary-green);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .demo-content p {
            color: var(--dark-gray);
            font-size: 1.1rem;
        }


