
        html, body {
            overflow-x: hidden !important; /* Eita screen-er baire faka jayga bondho korbe */
        }
  
    .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 4px; /* Eita icon gulor majhe halka space rakhbe */
        margin-right: 0px; /* Eita gap-ti dur korbe */
    }

    .header-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none !important;
        color: #000000 !important;
        transition: opacity 0.2s ease;
        padding: 5px;
        flex-shrink: 0;
        position: relative;
    }

    .btn-icon {
        width: 22px;
        height: 22px;
        stroke: #000;
        stroke-width: 1.5px;
        fill: none;
        margin-bottom: 2px;
    }

    .btn-label {
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
        display: none;
    }

    .header-btn .count {
        position: absolute;
        top: -2px;
        right: 0px;
        background: #000;
        color: #fff;
        font-size: 9px;
        font-weight: 600;
        min-width: 15px;
        height: 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid #fff;
    }

   
    .brand-logo img {
        transition: all 0.4s ease;
    }

    .brand-logo:hover img {
        transform: translateY(-5px);
        filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.1));
    }

    .brand-logo {
        animation: logo-pulse 3s infinite ease-in-out;
        display: inline-block;
    }

    @keyframes logo-pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.03); }
        100% { transform: scale(1); }
    }

    
    .menu-bar.stylish-toggle {
        background: transparent;
        border: none;
        padding: 5px;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        left: -8px; 
    }

    .menu-bar .toggle-box {
        width: 22px;
        height: 18px;
        display: inline-block;
        position: relative;
    }

    .menu-bar .toggle-inner, 
    .menu-bar .toggle-inner::before, 
    .menu-bar .toggle-inner::after {
        width: 22px;
        height: 2px;
        background-color: #000;
        border-radius: 2px;
        position: absolute;
        transition: all 0.3s ease-in-out;
    }

    .menu-bar .toggle-inner {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-bar .toggle-inner::before {
        content: "";
        top: -7px;
        left: 0;
    }

    .menu-bar .toggle-inner::after {
        content: "";
        bottom: -7px;
        left: 0;
        width: 14px; 
    }


    .menu-bar.stylish-toggle:active .toggle-inner,
    .menu-bar.stylish-toggle:active .toggle-inner::before,
    .menu-bar.stylish-toggle:active .toggle-inner::after {
        background-color: #007dfa;
    }

    .menu-bar.stylish-toggle:active .toggle-inner::after {
        width: 22px;
    }


    @media (max-width: 991px) {
        .header-right {
            gap: 5px !important;
            margin-right: 0px !important;
            justify-content: flex-end !important;
        }
        .btn-icon {
            width: 18px !important;
            height: 18px !important;
        }
        .header-btn {
            padding: 2px !important;
        }
   
        .header-profile-dropdown {
            position: relative;
        }

    
        .header-profile-dropdown.active .profile-submenu {
            display: block !important;
            animation: mobileSlideDown 0.25s ease forwards;
        }

  
        .profile-submenu {
            top: 120% !important;
            right: 0 !important;
            border: 1px solid #eaeaea !important;
            box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12) !important;
        }

        .profile-submenu li a {
            transition: background 0.2s ease;
        }

        .profile-submenu li a:active {
            background-color: #f5f5f5;
        }

        @keyframes mobileSlideDown {
            0% {
                opacity: 0;
                transform: translateY(5px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }