    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
        body{
            background-color: #FBFBF9;
            font-family:Arial, Helvetica, sans-serif;
        }

        .top_header{
            background:#fff;
            border-bottom:1px solid #edf2f7;
            position:sticky;
            top:0;
            z-index:999;
        }

        .navbar-brand img{
            height:42px;
            width:42px;
            object-fit:cover;
            border-radius:12px;
            border:2px solid #eef2ff;
            padding:3px;
            background:#fff;
        }

        .brand_text{
            line-height:1.1;
        }

        .brand_text h5{
            font-size:15px;
            font-weight:700;
            color:#111827;
            margin-bottom:1px;
        }

        .brand_text small{
            font-size:10px;
            color:#64748b;
            letter-spacing:1px;
        }

        .search_box{
            /* background:#f8fafc; */
            border:1px solid #e2e8f0;
            border-radius:50px;
            padding:5px;
        }

        .search_box .form-control,
        .search_box .form-select{
            border:none;
            box-shadow:none;
            background:transparent;
            font-size:12px;
            color:#475569;
        }

        .search_box .form-control::placeholder{
            color:#94a3b8;
            font-size:12px;
        }

        .search_btn{
            background:hsl(125, 75%, 59%);
            border:none;
            color:#fff;
            font-size:12px;
            padding:10px 18px;
            border-radius:30px;
            font-weight:600;
        }

        .search_btn:hover{
            background:rgb(3, 151, 3);
        }

        .top_icon{
            width:38px;
            height:38px;
            border-radius:12px;
            background:#f8fafc;
            border:1px solid #e2e8f0;
            color:#475569;
            display:flex;
            align-items:center;
            justify-content:center;
            text-decoration:none;
            transition:0.3s;
            font-size:14px;
        }

        .top_icon:hover{
            background:#4f46e5;
            color:#fff;
            border-color:#4f46e5;
        }

        .mobile_btn{
            border:none !important;
            box-shadow:none !important;
        }

        .dropdown-menu{
            border:none;
            border-radius:18px;
            padding:10px;
            min-width:230px;
        }

        .dropdown-item{
            font-size:12px;
            border-radius:10px;
            padding:10px 12px;
            transition:0.3s;
        }

        .dropdown-item:hover{
            background:#f1f5f9;
        }

