   :root {
            --primary-green: #a4c639;
            /* or any green you want */
        }
  body{
  font-family: sans-serif !important;
  }
 
  #home {margin-top: 85px;}
  .hero-sections  {margin-top: 85px !important;}

  .navbar-custom {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed; top: 0;
    width: 100%; z-index: 9999;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: #333333;
    font-size: 16px;
    font-weight: 600 !important;
    padding: 8px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #8bc34a;
}

/* Active state with underline */
.navbar-nav .nav-link.active {
    color: #8bc34a;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: #8bc34a;
}

/* Main Dropdown */
.dropdown-menu {
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    margin-top: 0;
    padding: 10px 0;
    min-width: 250px;
}

/* REMOVE hover effects for desktop - Click only */
@media (min-width: 992px) {
    /* Remove these hover effects */
    /* .dropdown:hover > .dropdown-menu {
        display: block;
    }
    
    .dropdown-submenu:hover > .submenu {
        display: block;
    } */
}

/* Category Items with Arrow */
.dropdown-item.category-item {
    color: #333333;
    padding: 12px 20px;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-item.category-item::after {
    content: '▼';
    font-size: 14px;
    font-weight: 400;
    color: #8bc34a;
    transition: transform 0.3s ease;
}

/* Rotate arrow when submenu is shown */
.dropdown-submenu.show > .category-item::after {
    transform: rotate(180deg);
}

.dropdown-item.category-item:hover {
    background-color: #f5f5f5;
    color: #8bc34a;
}

/* Nested Dropdown (Submenu) - Display BELOW parent */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    display: none;
    background: #f9f9f9;
    border-radius: 4px;
    padding: 5px 0;
    margin-top: 5px;
    margin-left: 15px;
    border-left: 3px solid #8bc34a;
}

/* Show submenu when parent has 'show' class */
.dropdown-submenu.show > .submenu {
    display: block;
}

.submenu .dropdown-item {
    padding: 10px 20px;
    color: #555555;
    font-weight: 400;
    transition: all 0.3s ease;
}

.submenu .dropdown-item:hover {
    background-color: #e8f5e9;
    color: #8bc34a;
    padding-left: 24px;
}

.navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='rgba%2833, 33, 33, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Desktop specific styles */
@media (min-width: 992px) {
    .dropdown-submenu .submenu {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        margin-left: 0;
        padding-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link.active::after {
        left: 0;
        right: auto;
        width: 50px;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown-submenu .submenu {
        position: relative;
        left: 0;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        margin-top: 5px;
        display: none;
    }

    .dropdown-item.category-item::after {
        content: '▼';
        font-size: 12px;
    }
}
        
        /* ///icons */
        
        /* Social Media Icons */
        .social-icons {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
        }

        .social-icons a {
            display: block;
            width: 50px;
            height: 50px;
            margin: 10px 0;
            background: white;
            border-radius: 50% 0 0 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
        }

        .social-icons a:hover {
            transform: translateX(-10px);
        }

        .social-icons .instagram { color: #E4405F; }
        .social-icons .facebook { color: #3b5998; }
        .social-icons .youtube { color: #FF0000; }
        .social-icons .whatsapp { color: #25D366; }

        /* Footer */
        footer {
            background: var(--primary-green) !important;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-logo {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .footer-tagline {
            font-size: 14px;
            margin-bottom: 30px;
        }

        .footer-social a {
            color: white;
            font-size: 20px;
            margin-right: 15px;
            transition: opacity 0.3s ease;
            background: #dcc63900;
        }

        .footer-social a:hover {
            opacity: 0.7;
        }

        .footer h5 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: padding-left 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            padding-left: 10px;
        }

        .footer-info p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: none;
            border-radius: 5px;
            background: white;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background:rgb(55, 212, 82) !important;
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #5a8525;
            transform: translateY(-2px);
        }
         /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes rotateIn {
            from {
                transform: rotate(-360deg);
                opacity: 0;
            }

            to {
                transform: rotate(0);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .product-slide {
                min-width: 33.333%;
            }
        }

        @media (max-width: 768px) {
            .hero-text-box h1 {
                font-size: 32px;
                text-align: center;
            }

            .hero-text-box .brand-name {
                font-size: 48px;
            }

            .hero-carousel,
            .carousel-item,
            .hero-slide {
                height: 79vh !important;
            }

            .social-icons {
                display: block !important;
            }

            .products-section h2,
            .welcome-content h2 {
                font-size: 24px;
            }

            .navbar-brand {
                font-size: 24px;
            }

            .product-slide {
                min-width: 50%;
            }

            .products-carousel {
                padding: 0 50px;
            }

            .product-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

         @media (max-width: 768px) {
    .social-icons {
        display: block;
        right: 0px !important;
        bottom: 10px;
        top: 317px;
        transform: none;
        flex-direction: row;
        z-index: 999;
    }
}

        @media (max-width: 576px) {
            .product-slide {
                min-width: 100%;
            }
        }

         .hero-section {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.3)), url('/images/bg-5.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 60px;
        }
        
        .hero-section h1 {
            font-size: 1.5rem !important;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInDown 1s ease;
        }
        .heading{
            font-size: 1.5 !important;

        }

        