    .hero {
        width: 100%;
        padding: 0;
        margin: 0;
        background-image: url("image/bg.png");
    }

    .container-fluid {
        padding: 0;
        /* Ensure no extra spacing */
    }

    .row {
        margin: 0;
    }

    .hero__categories,
    .hero__search {
        padding-left: 0;
        /* Remove left padding */
    }

    .hero__item {
        width: 100%;
        background-size: cover;
        background-position: center;
        padding: 50px 0;
        /* Adjust padding if needed */
    }

    .container {
        max-width: 90%;
        /* Default 100% hoti hai, ise kam kar diya */
        margin: auto;
    }

    .hero__categories {
        position: sticky;
        top: 0px;
        background: white;
        z-index: 1000;
    }

    .hero__categories ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hero__categories ul li {
        position: relative;
        padding: 0px;
        background: white;
        border-bottom: 1px solid #ddd;
    }

    .hero__categories ul li a {
        text-decoration: none;
        color: black;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
    }

    .hero__categories ul li i {
        transition: transform 0.3s ease-in-out;
    }

    /* Dropdown Menu Hidden */
    .hero__categories ul .dropdown-menu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        background: white;
        border: 1px solid #ddd;
        min-width: 150px;
        z-index: 999;
    }

    .hero__categories ul .dropdown-menu li {
        padding: 0px;
    }

    /* Hover Effect for Dropdown */
    .hero__categories ul .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Rotate Icon on Hover */
    .hero__categories ul .dropdown:hover a i {
        transform: rotate(90deg);
    }



    /* Sidebar */
    .custom-sidebar {
        width: 220px;
        height: 100vh;
        background: #ede9da;
        ;
        padding: 20px;
        position: fixed;
        left: 0;
        top: 0;
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .custom-sidebar .logo img {
        width: 100%;
        margin-bottom: 15px;
        /* margin-left: 20px; */
        max-width: 180px;
    }

    .search-box {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 8px;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .search-box input {
        border: none;
        outline: none;
        width: 100%;
        padding: 5px;
    }

    .search-box i {
        color: gray;
    }

    /* Menu */
    .menu {
        list-style: none;
        padding: 0;
    }

    .menu li {
        position: relative;
        margin: 10px 0;
    }

    .menu a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        padding: 10px;
        transition: 0.3s;
        cursor: pointer;
    }

    .submenu {
        list-style: none;
        background: #dad0c5;
        margin: 5px 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Submenu Active */
    .dropdown.active .submenu {
        opacity: 1;
        transform: translateY(0);
        max-height: none;
        /* Yeh line update karein */
        overflow: visible;
        /* Yeh bhi update karein */
    }


    .submenu li {
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .submenu li:hover {
        background: rgba(0, 0, 0, 0.1);
    }

    /* Sidebar for Mobile */
    @media (max-width: 768px) {
        .custom-sidebar {
            left: -280px;
            transition: left 0.3s;
        }

        .custom-sidebar.show {
            left: 0;
        }
    }

    /* ---- Mobile Sidebar ---- */
    @media (max-width: 768px) {
        .sidebar {
            width: 250px;
            height: 100vh;
            position: fixed;
            left: -250px;
            transition: left 0.3s;
            z-index: 1000;
            background: #F5E1C4;
        }

        .sidebar.show {
            left: 0;
        }
    }

    /* Navbar ko by default hide karein */
    .navbar {
        display: none;
        /* Desktop view par hide rahega */
    }

    /* Mobile view ke liye show karein */
    @media (max-width: 768px) {
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 10px 15px;
            background: #ede9da;
            position: static;
            top: 0;
            left: 0;
            z-index: 1200;
        }

        .navbar .logo img {
            height: 53px;
            margin-bottom: 0px;
            /* margin-left: 38px; */
        }

        .menu-toggle {
            display: block;
            font-size: 22px;
            color: #1c1c1c;
            height: 35px;
            width: 35px;
            line-height: 33px;
            text-align: center;
            border: 1px solid #1c1c1c;
            cursor: pointer;
            position: absolute;
            right: 20px;
            /* top: 40px; */
        }

        /* Sidebar Design */
        .sidebar {
            position: fixed;
            top: 0;
            left: -270px;
            /* Hidden initially */
            width: 270px;
            height: 100%;
            background: #e8c867;
            transition: left 0.3s;
            z-index: 1100;
            padding-top: 60px;
            /* Navbar ke neeche space */
        }

        .sidebar.show {
            left: 0;
        }

        /* Close button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }

        /* Dropdown fixes */
        .menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* .menu li {
        padding: 12px 20px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        position: relative;
    } */

        .menu li a {
            text-decoration: none;
            color: rgb(0, 0, 0);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu .dropdown .submenu {
            display: none;
            background: #dad0c5;
            /* padding-left: 15px; */
        }

        .menu .dropdown.active .submenu {
            display: block;
        }
    }

    .menu .dropdown a i {
        transition: transform 0.3s ease-in-out;
    }

    .menu .dropdown a i.rotate {
        transform: rotate(90deg);
    }


    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        z-index: 1000;
    }

    .whatsapp-button img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease-in-out;
    }

    .whatsapp-button img:hover {
        transform: scale(1.1);
    }

    .submenu-heading {
        padding: 10px 15px;
        font-size: 15px;
        color: #8F7359;
        /* Brown shade */
        background: #F5F5F5;
        /* Light background */
        font-weight: bold;
        border-bottom: 2px solid #ddd;
        margin-top: 5px;
    }

    .submenu li a {
        font-size: 14px;
        /* Chhota text */
        padding: 5px 10px;
        /* Chhoti padding */
    }




    .dropdown-container {
        position: fixed;
        right: 30px;
        top: 0px;
        z-index: 1000;
    }



    .dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        padding: 0px 15px;
        border: 1px solid #ccc;
        /* border-radius: 8px; */
        background: linear-gradient(135deg, #ffffff, #f8f8f8);
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .dropdown-toggle:hover {
        background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    }

    .dropdown-toggle img {
        width: 22px;
        height: 16px;
        border-radius: 3px;
    }

    .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }


    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        text-decoration: none;
        color: black;
        font-size: 15px;
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .dropdown-menu a img {
        width: 24px;
        height: 18px;
        border-radius: 3px;
    }

    .dropdown-menu a:hover {
        background: #f0f0f0;
        transform: translateX(5px);
        font-weight: bold;
    }

    /* ✅ Mobile Responsive */
    @media (max-width: 600px) {
        .dropdown-container {
            right: 60px;
        }

        .dropdown-toggle {
            padding: 0px 12px;
            font-size: 14px;
        }

        .dropdown-menu {
            width: 80px;
            top: 21px;
        }

        .dropdown-menu a {
            font-size: 14px;
            padding: 8px 12px;
        }
    }

    /* Default display: hidden for larger screens */
    @media (min-width: 1025px) {
        .menu-toggle {
            display: none;
        }
    }

    /* Tablet View: 768px to 1024px */
    @media (min-width: 768px) and (max-width: 1024px) {
        .navbar {
            padding: 15px 30px;
        }

        .logo img {
            height: 77px;
        }

        .menu-toggle i {
            font-size: 28px;
        }
    }

    /* Desktop / Large Screen View (min-width: 1440px) */
    @media (min-width: 1440px) {
        .custom-sidebar {
            width: 265px;
            /* Set fixed width for large screens */
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            padding: 20px 40px;
        }

        .logo img {
            height: 100px;
        }

        .menu-toggle {
            display: none;
            /* Hide menu toggle */
        }
    }

    /* Laptop View: 1025px to 1440px */
    @media (min-width: 1025px) and (max-width: 1440px) {
        .custom-sidebar {
            width: 239px;
            /* Sidebar width for laptops */
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            padding: 15px 30px;
        }

        .logo img {
            height: 100px;
        }

        .menu-toggle {
            display: none;
            /* Hide menu toggle */
        }
    }
    
